【发布时间】:2017-11-24 20:36:42
【问题描述】:
本地主机,xampp,赢 7
站点根文件夹是s02,所以所有相关文件,包括.htaccess都在这个文件夹下。
这样的链接可以正常工作:http://localhost/news/s02/view.php?art=160915142500&title=blue-sky
我想要以下计算的 urlhttp://localhost/articles/160915142500/blue-sky
.htaccess
RewriteEngine on
RewriteBase /
RewriteRule ^articles/([0-9]+)/([a-zA-Z-_]*)$ view.php?art=$1&title=$2 [NC,L]
结果 - 错误 404
httpd.confLoadModule rewrite_module modules/mod_rewrite.so - 未注释AllowOverride All
.htaccess (test) - 这行得通:
RewriteEngine on
RewriteRule ^ http://example.com/? [L,R]
phpinfo();mod_rewrite在Loaded Modules下
有什么帮助吗?
【问题讨论】:
标签: php .htaccess mod-rewrite