其他分享
首页 > 其他分享> > (收藏)网站首页 index.html 301跳转 不带 index.html 主域

(收藏)网站首页 index.html 301跳转 不带 index.html 主域

作者:互联网

其实参考大部分网站都没有做所谓的 index.html 301跳转主域,大部分都是隐藏主域后面的index.html,其实参考搜索引擎影响感觉差不多。

看了下国外网站 针对 后缀文件 index.html大部分是做404或者301处理。

但是对于强迫症对seo优化,可能需要用到!

环境:Windows宝塔版6.9  IIS10;

教程:网站目录 web_config文件夹下,打开rewrite.config配置文件(这是宝塔环境下的路径配置,非宝塔环境直接新增配置代码到根目录web.config里面配置文件。)

新增配置代码:

<!-- index.html 301 -->
	
	<rule name="301Rdeirect" stopProcessing="true">
    <match url="(.*)"></match>
    <conditions logicalGrouping="MatchAny">
      <add input="{HTTP_HOST}" pattern="^$" />           
    </conditions>
    <action type="Redirect" url="https://你的域名/{R:0}" redirectType="Permanent" />
  </rule>

  <rule name="homeIndex">
    <match url="^index.html$" ignoreCase="false"></match>
    <action type="Redirect" url="/" appendQueryString="false" redirectType="Permanent" />
  </rule>

<!-- index.html 301 -->

检验一下浏览器输入带index.hml 会直接301 跳转到不带index.html主域。

状态码检测一下:

PS:绝客

 

 

 

标签:index,301,主域,html,跳转,config
来源: https://blog.csdn.net/qq_37512865/article/details/111224413