这是适用于IIS7,IIS7.5,IIS8.0及以上的齐博X1版的伪静态规则,把以下代码保存成web.config文件,放到FTP的web目录内即可。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="0722100" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
1、记得重启服务器iis
2、后台——系统功能——网站配置——是否隐藏前台网址中的index.php文件名: 勾选隐藏
3、网站后台——网站菜单设置——所有菜单 里的目录前面的index.php都处理删除一下。
亲测可用
没人点 赞 没人回复 24小时后删帖!
求ngnix和ngnix+apache,群主,看我的帖子https://x1.php168.com/bbs/show-4486.html
求 Ngnix 伪静态配置
不错 测试成功
后台——系统功能——网站配置——是否隐藏前台网址中的index.php文件名: 勾选隐藏