以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