环境:
Azure VM Server 2012 R2 IIS v8.5
场景:
在网络接口上打开http端口 - 可以使用VM IP地址(http://40.77.29.12/)
使用Microsoft WPI(Windows平台安装程序)在VM上安装Wordpress - 可以在服务器上本地到达wordpress安装没问题
使用域名注册商创建了主机A记录 - Ping域名(systmerror.com)解析为VM IP地址
访问域名时返回403禁止 - http://systmerror.com/
我对任何想法都持开放态度,我已经研究并尝试了许多没有成功的事情。
答案 0 :(得分:0)
我在这里向您的问题提出一些建议:
确保您已将主机名配置为IIS网站绑定,以便访问正确的IIS网站。
接下来你可以查看" index.php"添加到IIS顶级或网站级配置的默认文档。
检查用户IUSR是否对Web根文件夹具有读取权限,您可以在上传文件夹中添加具有写入权限的用户,以确保其正常工作。
不要忘记IIS中的重写模块(您需要安装它)并在web.config中进行正确的配置,例如:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="WordPress Rule 1" stopProcessing="true">
<match url="^index\.php$" ignoreCase="false" />
<action type="None" />
</rule>
<rule name="WordPress Rule 2" stopProcessing="true">
<match url="^wp-admin$" ignoreCase="false" />
<action type="Redirect" url="wp-admin/" redirectType="Permanent" />
</rule>
<rule name="WordPress Rule 3" stopProcessing="true">
<match url="^" ignoreCase="false" />
<conditions logicalGrouping="MatchAny">
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" />
</conditions>
<action type="None" />
</rule>
<rule name="WordPress Rule 4" stopProcessing="true">
<match url="^(wp-(content|admin|includes).*)" ignoreCase="false" />
<action type="Rewrite" url="{R:1}" />
</rule>
<rule name="WordPress Rule 5" stopProcessing="true">
<match url="^([_0-9a-zA-Z-]+/)?(.*\.php)$" ignoreCase="false" />
<action type="Rewrite" url="{R:2}" />
</rule>
<rule name="WordPress Rule 6" stopProcessing="true">
<match url="." ignoreCase="false" />
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>