1、新版宝塔windows版设置IIS伪静态规则
1.登录宝塔面板网站
2.设置伪静态
3.保持默认0.当前
4.添加以下代码
5.保存配置完成
<rule name="xxfseo" stopProcessing="true">
<match url="(.*)$" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php?{R:1}" appendQueryString="true" />
</rule>
2、Typecho开启伪静态
1.登录管理界面
2.设置
3.永久链接
4.启用地址重写功能
5.勾选仍然启动此功能
6.选择wordpress风格
7.保存设置