一个服务器部署多个 wordpress,500 报错等等宝塔的设置
发布于: 2020 年 12 月 18 日
这里提供一个可以使用的伪静态和配置文件信息:
1.先在网站设置-网站目录里面勾选上:锁定配置文件(IIS部署Wordpress必选)
2.先改配置文件:
<?xml version="1.0" ?><configuration> <location allowOverride="false" inheritInChildApplications="false" path="."> <system.webServer> <rewrite> <rules configSource="web_config\rewrite.config"></rules> </rewrite> <defaultDocument configSource="web_config\default.config"></defaultDocument> <httpErrors configSource="web_config\httpErrors.config"></httpErrors> <handlers configSource="web_config\php.config"></handlers> </system.webServer> </location></configuration>
3.改伪静态规则:
<?xml version="1.0" ?><rules> <rule enabled="true" name="WordPress: https://5c.ltd(这里是你的域名)_rewrite" patternSyntax="Wildcard"> <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>
4.然后保存,应该就可以了,有问题的话可以留言或者邮件我一起讨论。
划线
评论
复制
发布于: 2020 年 12 月 18 日阅读数: 11
wood
关注
还未添加个人签名 2020.04.03 加入
还未添加个人简介
评论