将所有子目录页面重定向到 .htaccess 中的新域主页
Posted
技术标签:
【中文标题】将所有子目录页面重定向到 .htaccess 中的新域主页【英文标题】:Redirect all subdirectory pages to new domain home page in .htaccess 【发布时间】:2017-03-08 10:25:07 【问题描述】:我想将 olddomain.com/subdirectory/ 下的所有页面重定向到 newdomain.com?
newdomain.com 站点具有新的 URL 结构,因此我希望将 olddomain.com/subdirectory/urls 下的每个页面重定向到 newdomain.com主页。
我试过下面的代码。
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %HTTP_HOST !^olddomain.com/subdirectory/$ [NC]
RewriteRule ^(.*)$ http://newdomain.com [R=301,L]
</IfModule>
但它使用现有网址(如http://newdomain.com//url
)重定向,并通过 404 错误。
高度赞赏任何帮助。谢谢
【问题讨论】:
【参考方案1】:您可以使用以下规则:
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^subdir/(.*)$ http://newdomain.com/ [R=301,L]
</IfModule>
【讨论】:
如果有人对此代码有疑问,请尝试将其放在 .htaccess 文件的顶部。这对我有用。以上是关于将所有子目录页面重定向到 .htaccess 中的新域主页的主要内容,如果未能解决你的问题,请参考以下文章
Htaccess 将所有文件从一个域中的子目录重定向到另一个域
.htaccess - 将所有 URL + 现有目录重定向到 index.php
使用.htaccess将所有子文件夹的目录重定向到Root(主)目录