linux 如何使用htaccess将blog重定向到另一个url

k97glaaz  于 2023-10-16  发布在  Linux
关注(0)|答案(1)|浏览(102)

我最近把我的博客从https://mobileframers.com/bloghttps://blog.domain.com的问题是,谷歌正在寻找不存在的沼泽页面,我想重定向个人博客如下使用htaccess:
Redirect https://mobileframers.com/blog https://blog.mobileframers.com
Redirect https://mobileframers.com/blog/test-1 https://blog.mobileframers.com/test-1
Redirect https://mobileframers.com/blog/test-2 https://blog.mobileframers.com/test-2

v8wbuo2f

v8wbuo2f1#

要将所有请求从带名的旧域重定向到不带名的新域,同时保持路径的剩余部分和完整的查询字符串,请在.htaccess中使用mod_rewrite:

RewriteEngine On
RewriteCond %{REQUEST_URI} ^/blog/(.*)$
RewriteRule ^(.*) https://blog.mobileframers.com/%1 [R=301,NC]

相关问题