我收到此错误:
Internal server error. Internal Server Error
The server encountered an internal error or misconfiguration
and was unable to complete your request.
当我运行时,我可以看到 mod_rewrite 显示为“已加载模块”。
这是我的 htaccess 规则,我想将任何无法解析/找到的 url 发送到 index.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-s
RewriteCond %{REQUEST_FILENAME} !-l
Rewritecond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php [NC,L]
有人可以帮我调试吗?我被困住了...