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

Mr.zhuMr.zhu2025-09-03 21:30:10来源:重庆分类目录网 (www.023dir.com)阅读:94

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>

猜你想看

隔离霜可不能乱选!无效隔离霜等于没涂
2022上半年热门电视剧,你追了哪几部?
冬季饮食的五大误区,你中招了吗?
选牙膏远离“误区”
科目三灯光模拟,看这里就够了!
使用神经网络为图像生成标题
吃米和吃面,哪个更容易发胖?看完明白了
为什么不能踩着离合器滑行?会有什么后果?
离婚协议房屋赠与儿子女方有居住权,男方提出不得带他人入住能支持吗?
高血压应该怎么办?送你7个降压方法试试看
白酒为什么不标识保质期?白酒真的不会过期吗?今天终于知道了
未来零售银行新转机:科技、场景及重点客群
睡前喝二两白酒与不喝有什么区别?哪个更健康?别纠结告诉你答案
体检查出脂肪肝怎么办?
养发财树,学会3个技巧,茎杆粗壮,四季常青
在售楼处看沙盘需要注意哪些问题?
开放式厨房能不能做?我亲身尝试了一个月,告诉你一些真实感受
从职场小白到沟通高手,我们需要转变哪些思维
我国中等收入人群已达4亿,月薪多少才属于中等收入群体?
电地暖的耗电量,是如何的?

推荐站点