标签:cond res 自动 directory 代码 blank 搭建 http tor
今天帮客户做了网站,https://www.tui21.shop/ 在WIN2003 主机上用 西部数据建站助手搭建的 全能环境,用wordpress搭建了一个网站,
在设置伪静态的时候,发现不能自动生成web.config文件, 而之前在GODADDY的全能主机上安装的wordpress就可以自动生成web.config文件。
而把godaddy上面那个web.config文件复制到 tui21.shop上面,发现用不了。这里把代码贴出来,供大家参考。
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="WordPress: https://blog.zobdii.com" 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> </rewrite> </system.webServer> </configuration>
下面贴出可以正确使用的文件:
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="wordpress" 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> </rewrite> </system.webServer> </configuration>
貌似这个name的问题,两个文件还是差不多的。下面这个是通用的,只要是全能主机,能安装上WORDPRESS,都是可以用的。
标签:cond res 自动 directory 代码 blank 搭建 http tor
原文地址:https://www.cnblogs.com/aid12580/p/10424975.html