.htaccess FollowSymLinks

2017-12-07  本文已影响0人  CMDY10086
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>

代码目的是将非真正存在的文件全部重定向到index.php中。如果请求的url为http://127.0.0.1/ghghghg 则重定向到index.php并且$_SERVER['REQUEST_URI']为ghghghg。
但实际上却一直出现403错误

<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>

后可行

上一篇下一篇

猜你喜欢

热点阅读