2015-04-22 103 views

回答

0

你想在你的.htaccess文件是這樣的:使用

Options +FollowSymlinks -MultiViews 
RewriteEngine on 

# Redirect specific pages 
RewriteCond %{HTTP_HOST} ^olddomain\.com$ [NC] 
RewriteRule ^(index\.html)$ http://newdomain.com/path/$1 [R=301,L,NC] 
RewriteRule ^(index2\.html)$ http://newdomain.com/path/$1 [R=301,L,NC] 
RewriteRule ^(index3\.html)$ http://newdomain.com/path/$1 [R=301,L,NC] 

# Redirect all others to the new domain 
RewriteRule ^(.*)$ http://newdomain.com/ [R=301,L] 

自定義和測試您的具體情況:http://htaccess.madewithlove.be/