虛擬空間iis環境下如何隱藏index.phpphp
網上好多教程都是說要改iis環境什麼的,但問題是,我只是虛擬空間啊,別人又不會幫你改iis什麼的html
弄了一天,頭都炸了,後來無心間看到一個帖子,配置web.config。瞬間就通透了web
就在tp5根目錄下寫了個config文件。ide
好了屁話很少說了,直接上代碼url
本身建立一個web.config文件,代碼以下xml
<?xml version="1.0"?>htm
<configuration>教程
<system.webServer>input
<rewrite>it
<rules>
<rule name="OrgPage" stopProcessing="true">
<match url="^(.*)$" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" pattern="^(.*)$" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>