虚拟主机域名注册-常见问题 → 云主机/VPS → 云主机/VPS | |||||||
[原创]弹性云服务器win2008系统IIS7实现301重定向
方法一:利用web.congfig放在跟目录下可以实现301重定向,代码为: <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="WWW Redirect" stopProcessing="true"> <match url=".*" /> <conditions> <add input="{HTTP_HOST}" pattern="^xiuzhanyun.com$" /> </conditions> <action type="Redirect" url="http://www.xiuzhanyun.com{R:0}" redirectType="Permanent" /> </rule> </rules> </rewrite> </system.webServer> </configuration> 点击下载:web.congfig 方法二:IIS7下设置301重定向 操作步骤 1、 我们在IIS下新建一个网站test,在目录下建立一个简单首要内容是这是网站test。
然后我们在浏览器中输入我的网站后,他会自动跳转到百度首页上。成功设置完成。
|
|||||||
>> 相关文章 | |||||||