【发布时间】:2018-04-13 07:13:54
【问题描述】:
您好,我正在尝试练习 url 重写。我在路径中写入了 .htaccess 文件:C:\wamp64\www\RewriteUrl。在同一位置,我有文件 pet_care_info_01_02_2008.php 。我的重写规则是:
RewriteEngine On # Turn on the rewriting engine
RewriteRule ^pet-care/?$ pet_care_info_01_02_2008.php [NC,L]
所以我想将http://localhost/RewriteUrl/pet_care_info_01_02_2008.php 更改为http://localhost/RewriteUrl/pet-care.php。但目前它给了我整个路径而不是重写它。有什么想法吗?
【问题讨论】:
-
localhost/RewriteUrl/pet_care_info_01_02_2008.php 那是我在 URL 中输入的命令,它没有给我localhost/RewriteUrl/pet-care.php
标签: php .htaccess url-rewriting wamp