Htaccess redirect all files from subdirectory in one domain to another domain

天涯浪子 提交于 2019-12-17 16:29:30

问题


I am trying to create a permanent htaccess redirect (301) from all files in one directory in one domain, to another domain as follows:

Redirect all files in the following directory:

http://www.primary.com/apples/*

To:

http://www.secondary.com

I am not very experienced with htaccess and was wondering if someone can assist me in creating this redirect?

Many thanks in advance!


回答1:


This should work in one .htaccess file at primary.com root directory:

Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.primary\.com  [NC]
RewriteRule ^apples/(.*)  http://www.secondary.com/$1 [R=301,NC,L]


来源:https://stackoverflow.com/questions/16864690/htaccess-redirect-all-files-from-subdirectory-in-one-domain-to-another-domain

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!