嘿伙计们在移动域名后我需要htaccess代码来执行以下操作。
自:
http://www.techau.tv/blog/review-d-link-2890al-wireless-modem-router/
要:
http://techau.com.au/review-d-link-2890al-wireless-modem-router/
因此,在更改域名时,我删除了www
和/blog
。
答案 0 :(得分: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/