php路由

打开httpd.ini
添加: RewriteRule (.*)$ /index\.php\?s=$1 [I]


高版本打开web.Config
添加节点:
<rewrite>
<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>


最好复制文件保存一份原始文件在电脑里,修改完以后请重启iis。

posted @ 2018-06-25 10:17  少时不知贵  阅读(132)  评论(0编辑  收藏  举报