IIS7服務(wù)器環(huán)境下隱藏index.php方法介紹
1、打開鏈接:rewrite_x64_zh-CN.msi
2、保存文件:rewrite_x64_zh-CN.msi
3、安裝
4、重新打開IIS服務(wù)器管理器 或者 刷新要操作的網(wǎng)站
5、管理區(qū)多了“URL重寫”選項(xiàng):
6、打開“URL重寫”,點(diǎn)擊右側(cè)欄“導(dǎo)入規(guī)則”:
7、填入 重寫規(guī)則 ,然后點(diǎn)擊右側(cè)“應(yīng)用”提交:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>