2016-09-16 92 views
0

當重定向到舊網站的網址頁面,新網站的網址,就會導致這樣的重定向: www.newdomain.comabout.html/一些錯誤在所有舊的域名網址到新的域名網址

但是我要像這樣的: www.newdomain.com/about.htm

我的舊網站的網址是這樣的:
www.olddomain.com/about.html
www.olddomain.com/contact.html
WWW。 olddomain.com/location.html

而且我的新網站的網址是這樣的:
www.newdomain.com/about.htm
www.newdomain.com/contact.htm
www.newdomain.com/location.htm

你可以請注意,我已將文件擴展名從html更改爲新域中的htm。

我在編輯舊域.htaccess文件試過這樣:
重定向301 /about.html http://www.newdomain.com/about.htm

而且也試過這樣(在舊的域名網址插入):

<meta http-equiv="refresh" content="0; url=http://www.newdomain.com/about.htm"> 

兩者都不起作用。請幫忙。

回答

0

嘗試在你的.htaccess文件OLDDOMAIN使用下面的代碼:

RewriteEngine On 
RewriteCond %{HTTP_HOST} ^www\.olddomain\.com$ [NC] 
RewriteRule ^(.+\.htm)l$ http://www.newdomain.com/$1 [R=301,L]