在GoDaddy上托管窗口以将index.html重定向到root

时间:2016-05-23 00:24:10

标签: .htaccess redirect windows-hosting

如果我有Windows服务器,我是否有可能将index.html重定向到root:

www.example.com/index.html    -> www.example.com
http://example.com/index.html -> http://example.com 

我目前使用的托管不是Apache,我使用的是Windows服务器。

1 个答案:

答案 0 :(得分:1)

又一个编辑:

元刷新标记

<meta http-equiv="refresh " content="0; url=www.example.com">

如果元刷新标记不起作用,我们可以尝试另外两个选项。

设置默认文档。 (简单)

Web.Config设置:

<system.webServer>
<defaultDocument enabled="true">
    <files>
        <clear />
        <add value="index.html" />
    </files>
</defaultDocument>
</system.webServer>

有关通过web.config设置的详细信息:Setting Default WebPage in IIS 7.5

或通过IIS UI设置(如何在“操作方法”部分中的步骤1到8):https://www.iis.net/configreference/system.webserver/defaultdocument

在IIS中创建重写规则。 (更难)

如果我们使用Apache,我们将创建/更新.htaccess文件规则:

RewriteEngine On
RewriteRule ^index\.html$ / [R=301,L]
RewriteRule ^(.*)/index\.html$ /$1/ [R=301,L]

在IIS中,我们必须在web.config中以不同的方式添加这些重写规则。请参阅以下链接。

在web.config中创建重写规则的步骤:IIS URL Rewrite and Web.config

有关将.htaccess内容转换为IIS web.config的详细信息:http://www.iis.net/learn/application-frameworks/install-and-configure-php-applications-on-iis/translate-htaccess-content-to-iis-webconfig

或在IIS UI中创建重写规则:http://www.iis.net/learn/extensions/url-rewrite-module/creating-rewrite-rules-for-the-url-rewrite-module