2011-04-11 50 views

回答

0

http://httpd.apache.org/docs/2.0/mod/mod_alias.html#redirect文件究竟發生了什麼。

你可能想使用RedirectMatch,像:

RedirectMatch ^/features/blahblah.php http://www.mysite.com/articles/blahblah1.php 

如果你希望它是一個「永久」,與HTTP狀態301(可以是理想的搜索引擎優化的目的)重定向,而不是暫時性302重定向,然後改用:

RedirectMatch permanent ^/features/blahblah.php http://www.mysite.com/articles/blahblah1.php 
相關新聞
+0

RedirectMatch永久^ /功能/ blahblah.php HTTP(*): //www.mysite.com/articles/blahblah1.php導致相同的ht TP://www.mysite.com/articles/blahblah1.php Q =特徵/ blahblah.php – robert 2011-04-11 15:32:35

相關問題