大家好,在我的本地主机上尝试使用 XAMPP 的 .htaccess,我已经检查了 phpinfo() 是否加载了 mod_rewrite 并且它是,所以这不应该是问题..
这是我的 .htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA, L]
这是它在每一页上给出的错误
SERVER ERROR
The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there was an error in a CGI script.
我的 htaccess 或 XAMPP 有什么问题?:)