Web.config 文件例子

三世轮回 提交于 2019-12-10 12:15:54

php - 如何使用web.config重写IIS UrlRewriteModule中的网页的URL?

<?xml version="1.0" encoding="UTF-8"?>

<configuration>

    <system.webServer>

        <rewrite>

            <rules>

                <rule name="openbms" patternSyntax="ECMAScript" stopProcessing="true">

                    <match url="^(.*)$" ignoreCase="true" negate="false" />

                    <conditions logicalGrouping="MatchAll">

                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="true" negate="true" />

                        <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="true" negate="true" />

                    </conditions>

                    <action type="Rewrite" url="index.php?s={R:1}" />

                </rule>

            </rules>

        </rewrite>

    </system.webServer>

</configuration>

 

 

 

文章来源:刘俊涛的博客 欢迎关注公众号、留言、评论,一起学习。

__________________________________________________________________________________

若有帮助到您,欢迎捐赠支持,您的支持是对我坚持最好的肯定(*^_^*)

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!