IIS 去掉index.php

下载rewrite_x64_zh-CN.msi

地址:http://www.microsoft.com/zh-cn/download/confirmation.aspx?id=7435

安装。

IIS中出现【URL 重写】

IIS 去掉index.php_第1张图片

导入规则

IIS 去掉index.php_第2张图片

规则:

[plain]view plaincopy

print?

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

完成。

你可能感兴趣的:(IIS 去掉index.php)