0

Hey guys I need the htaccess code to do the following after moving domains.

From:

http://www.techau.tv/blog/review-d-link-2890al-wireless-modem-router/

To:

http://techau.com.au/review-d-link-2890al-wireless-modem-router/

So in the change of domain, I dropped the www and the /blog.

4

1 回答 1

0

尝试将此添加到http://www.techau.tv上的 .htaccess 文件中:

## 301 Redirect Entire Directory
RedirectMatch 301 http://www.techau.tv/blog/(.*) http://techau.com.au/$1
RedirectMatch 301 http://techau.tv/blog/(.*) http://techau.com.au/$1

似乎使用正则表达式来做到这一点。

顺便说一下,我用这个工具生成了它:http: //www.htaccessredirect.com/

于 2013-08-17T02:29:26.647 回答