.htaccess 导致 500 错误

.htaccess 导致 500 错误

我正在尝试使用 Apache 中的重写引擎。这是我的 .htaccess

<IfModule mod_rewrite.c>
Options +FollowSymLi2nks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$  index.php [QSA,R=301,L,NC]
</IfModule>

我不明白为什么这会在 apache 中引发 500 错误。

答案1

改变

Options +FollowSymLi2nks

Options +FollowSymLinks

相关内容