当我进入我的域时,它会重定向到我的Azure子域(x.azurewebsites.com)。如何解决此问题,以便我的域名不会重定向? 我的配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="MyRule">
<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/{R:1}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
提前致谢。
答案 0 :(得分:1)
转到Azure管理员(manage.windowsazure.com)选择您的站点,然后选择配置。
确保您已在此处设置域名。
答案 1 :(得分:0)
Have you tried looking at the documentation?如果您遇到任何步骤的具体问题,请告诉我们,但至少要尝试付出一些努力。