且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

重定向文件夹从一个领域到另一个使用的.htaccess 301重定向

更新时间:2022-12-09 11:54:14

替换您的code这一点:

Replace your code with this:

Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_HOST} ^(www\.)?olddomain\.com$ [NC]
RewriteRule ^oldfolder/(.*)$ http://newdomain.com/newfolder/$1 [L,R=301,NC]