iis下常用程序的伪静态规则列表(包括wordpress、thinkphp)

Mr.zhuMr.zhu2025-09-03 21:30:10来源:极兔速递 (www.jtexpress.com.cn)阅读:42

shopex discuz2.0 discuz2.5 discuz3.x 淘宝客 ecshop phpwind参照http://www.west.cn/faq/list.asp?unid=797通过主机面板设置即可

wordpress设置(系统不推荐Windows,如果可以更换为linux系统运行更稳定):

第一步:

 登陆wordpress后台,设置--固定链接--自定义结构,选择设置下URL格式。

第二步:

新建一个文件命名为:web.config,在里面写入以下规则,上传到wwwroot目录。

<?xml version="1.0" encoding="UTF-8"?>
  <configuration>
   <system.webServer>
     <rewrite>
       <rules>
         <rule name="URL" stopProcessing="true">
          <match url="^(.*)$" />
          <conditions>
             <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
             <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
           </conditions>
          <action type="Rewrite" url="index.php"/>
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>

Thinkphp伪静态规则:

 手工创建web.config文件到站点根目录

<?xml version="1.0" encoding="UTF-8"?>
   <configuration>
     <system.webServer>
       <rewrite>
         <rules>
            <rule name="Imported Rule 1" stopProcessing="true">
              <match url=".*\.(?:gif|jpg|png|css|js|txt|jpeg|swf|flv)" />
             <action type="Rewrite" url="{R:0}" />
           </rule>
            <rule name="Imported Rule 2">
             <match url="/httpd(?:\.ini|\.parse\.errors)" />
              <action type="CustomResponse" url="/" statusCode="403" statusReason="Forbidden" statusDescription="Forbidden" />
            </rule>
           <rule name="Imported Rule 3" stopProcessing="true">
              <match url="^(?!/index.php)(?!/admin.php)(.*)$" ignoreCase="false" />
              <conditions logicalGrouping="MatchAll">
              <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
                <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
              </conditions>
             <action type="Rewrite" url="/index.php/{R:1}" />
           </rule>
        </rules>
      </rewrite>
   </system.webServer>
</configuration>

猜你想看

用社保卡领取养老金,会带来哪些好处?需要注意些什么?
新能源车开到报废,也用不上的三种保险,省下钱吃火锅不香吗?
绿茶冲泡最忌先放茶叶再倒水?如何泡出一杯鲜醇好喝的绿茶?
票房破6亿!这部全员演技派的国产大片,果然爆了
秋天多吃七道菜,养肝润肺身体好,大人小孩都爱吃,好吃不贵
退休人员被判刑后,养老保险金能否正常领取?
呼吸是瑜伽的根本,练瑜伽时到底该怎么呼吸?
开车必知:交警的指挥手势都是啥意思?
不要墨守成规 专家教你如何健康“贴秋膘”
为什么自助餐总是一吃就饱?
西藏行丨布达拉宫里面究竟有什么秘密?
简历你真的会做吗?学习超实用的简历制作教程
云南旅游攻略,包含路线、景点、交通、住宿、美食、费用最全攻略
男职工办生育保险有用吗?
中国十大名菜排名,你的家乡菜有没有上榜?
气色好、头发密、健步如飞……新的一年做好这几点,养足精气神
10年前的显卡都流畅 《暗黑4》被曝移植苹果平台:iPad也能玩
带娃野餐哪里好 这些免费的“宝藏公园”别错过
中药的疗效和煎煮方法密不可分,这几个煎药细节要注意!
北京买房限购政策、购买流程!

推荐站点