【发布时间】:2014-07-26 20:26:19
【问题描述】:
我已经安装了 WAMP 并启用了 mod_rewrite 模块。
我不习惯在windows机器上开发,有什么建议吗?
<IfModule mod_rewrite.so>
Options +FollowSymLinks -MultiViews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d //Rewrites if the directory doesn't exist
RewriteCond %{REQUEST_FILENAME} !-f //Rewrites if the file doesn't exist
RewriteRule ^(.*)$ index.php?cat=$1 [L,QSA] // Change this to suit your needs
</IfModule>
localWebsite.ht.local,加载正确。
localWebsite.ht.local/index.php,加载正确。
localWebsite.ht.local/myQuery,加载不正确,返回 404。
【问题讨论】: