我遇到了 apaches mod_rewrite 的问题。我想用我的 php 应用程序制作干净的 url,但它似乎没有给出我期望的结果。
我在我的 .htaccess 文件中使用此代码:
RewriteEngine on
RewriteRule ^project/([0-9]{4})/([0-9]{2})$ /project/index.php?q=$1&r=$2 [L]
RewriteRule ^project/([0-9]{4})$ /project/index.php?q=$1 [L]
要做到这一点,当我查看时http://localhost/user/project/system
,这将是查看的等价物http://localhost/user/project/index.php?q=system
我没有得到任何结果,而是得到一个典型的 404 错误。
我还刚刚检查了 mod_rewrite 是否可以通过将我的 .htaccess 代码替换为:
Options +FollowSymLinks
RewriteEngine On
RewriteRule (.*) http://www.stackoverflow.com
它正确地将我重定向到这里,所以 mod_rewrite 肯定是有效的。
我的项目的根路径是/home/user/public_html/project
用于查看我的项目的 url 是http://localhost/user/project
如果需要更多信息,请告诉我。
谢谢