0
<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/

但即使我将其添加到我的重写基础上,它也不起作用。

4

1 回答 1

1

IIS 本身并不使用 .htaccess 文件。

在 IIS 中使用名为 Web.config 的文件,您需要处理该文件以进行重定向

参考链接:http ://www.iis.net/learn/application-frameworks/install-and-configure-php-applications-on-iis/translate-htaccess-content-to-iis-webconfig

于 2013-10-21T23:22:00.467 回答