<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
此 htaccess 规则不会重定向 404 错误或只是找不到页面到索引页面
我究竟做错了什么?
我的 localhost url 是由 IIS 生成的,所以它显示为:localhost:26139/
但即使我将其添加到我的重写基础上,它也不起作用。