请有人看看我的 .htaccess 代码以帮助确定问题所在。
我正在尝试将所有 example.php、example.html 和 example.htm URL 修改为 index.php?filename=example.html
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(index\.php) - [L]
RewriteRule ^([^/\.]+).(php|html|htm)$ index.php?filename=$1.html&%{QUERY_STRING} [L]
</IfModule>
当我输入像 example.html 这样的 URL 时,我被带到默认的 404 而不是 index.php