gpt4 book ai didi

.htaccess - 301 htaccess 仅限首页重定向

转载 作者:行者123 更新时间:2023-12-02 00:24:02 25 4
gpt4 key购买 nike

编辑:为了更好地解释我想要什么。

我们想将首页 http://www.example.com 移动到子页面 http://www.example.com/sub-page

所以为了保持我们的SEO排名我们需要写一个301永久移动。我们希望子页面 URL 显示在浏览器中。这应该显示 http://www.example.com/sub-page/

因此,如果您尝试输入 http://www.example.com,您的 url 将被重写为 http://www.example.com/sub -page/ 带有 301 重定向。

但不应重定向所有其他页面!例如。 http://www.example.com/contact/ 应该还是一样的。

它还应该处理根域的每个变体。有和没有尾部斜杠(example.com/vs example.com)使用和不使用 www(www.example.comexample.com)

最佳答案

1. Enable mod_rewrite and .htaccess. 
2. Create and deploy your new home page as `/sub-page`
3. Then put this code in your .htaccess file under DOCUMENT_ROOT:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

# reqest to example.com/ will be forwarded to example.com/sub-page
RewriteRule ^$ sub-page [L,R=301]

关于.htaccess - 301 htaccess 仅限首页重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9698717/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com