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

Mr.zhuMr.zhu2025-09-03 21:30:10来源:优站库 (www.uzkoo.com)阅读:130

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>

猜你想看

智能电视屏幕怎么选?看这篇就够了!帮你避掉关于“屏幕”的坑
怎样开车才能提速快?老司机:别傻乎乎只踩油门
CEO、CIO、CFO、COO、CTO、CKO,这些职位都是在做什么的?
事业编和公务员编是有区别的,别选错了!
“句句都不黄,句句都很撩”
入住酒店的时候,为何总能看到小卡片?导游:游客别上当
𝗦𝗵𝗮𝗿𝗲 | 刘亦菲高清壁纸
公司逼你辞职的6个损招,杀人不见血,别轻易上当,保护好自己
全国哪的面粉最好吃?经过评比,这4种面粉比较出名,快来看看吧
自制炸鸡店好吃的麦乐鸡块,外焦里嫩,鲜嫩多汁,吃一口就会爱上
做一次CT对人的影响有多大?
这4种“水果”必须要让孩子多吃,保护视力,还能提升免疫力!
加大油门,发动机嗡嗡叫,速度提不上来,这是哪里的问题?
柠檬水的6种喝法和20种妙用
车子长时间不开有什么影响,要怎么保养才合适?
膝盖不知不觉就“坏”了?做好这5件事,保护你的膝盖~
2023年养老金调整已敲定,工龄20年30年和40年,分别增长多少钱?
“抱歉,超过35岁我们不要”,研究生求职被拒,HR的话现实又扎心
千万别花冤枉钱 大屏电视要这样买
今年实现签发全国统一电子社保卡

推荐站点