以Apache
服务器为例,打开httpd.config
文件。
1、确保以下这行是开启状态(即前面没有#号)
LoadModule rewrite_module modules/mod_rewrite.so
2、确保以下两处AllowOverride
选项为All
Options FollowSymLinks
AllowOverride All
# … other directives…
AllowOverride All
修改完成后,需重启Apache
才能生效。
service httpd restart