在WAMP上遇到.htaccess文件时遇到问题。适用于实时服务器,但不适用于localhost。它让我很生气。有什么建议吗?
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^([^/\.]+)-online-help/([^/\.]+)-teacher/([^/\.]+)/([^/\.]+)/([^/\.]+)/?$ advert.php?cat=$1&subcat=$2&type=$3&aid=$4&title=$5 [L]
RewriteRule ^([^/\.]+)-online-help/([^/\.]+)-teacher/([^/\.]+)/?$ listing.php?cat=$1&subcat=$2&type=$3 [L]
答案 0 :(得分:0)
默认情况下,WAMP中未激活rewrite_module。你必须进入上下文菜单:Apache> Apache模块> rewrite_module。
请勿忘记在此操作后重新启动所有服务。