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

Mr.zhuMr.zhu2025-09-03 21:30:10来源:武汉男士养生网 (wh.pjxi.com)阅读:30

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>

猜你想看

开了8年轿车又开了3年SUV,谈谈5点自驾游不同车型的真实感受
植物“叶片”的5个“求救信号”,出现了赶紧这样做
为何主机控制面板的本月流量数字远大于站点访问统计中本月每日流量的总和?
你在光速飞船上奔跑,速度超过光速了吗?
“1升汽油”等于多少公斤?如果这都不了解,就别自称为老司机
养壶小技巧:手把手教你如何养护心爱的壶
眼睛疲劳,到底热敷好还是冷敷好?3个缓解小方法,赶紧收藏
上班打卡为什么叫“点卯”?
南大教授点评刀郎《罗刹海市》,句句珠玑,一针见血!
BMW的信息娱乐系统详解
分享3种简单易学的居家减肥操
女人只要眉毛画的好,就是人生大赢家!
纯水养花长不大,加点泥巴土,长满新叶子
特别的三文治——芒果吐司,清新的口味,一起享受美好的早餐时光
轻松摆脱水桶腰!5个瑜伽动作,让你变身水蛇腰美女
焯水不是简单煮一下!这 6 类必须焯水的食物,你可能一直都没焯对……
红烧排骨不要直接下锅炒了,多加这一步,肉质鲜嫩更入味
聊聊我眼中的海南兴隆,为何那么多北方人在兴隆买房
如何区分电子手刹和自动驻车?
新手买二手车一定要查的车况信息

推荐站点