2010-05-04 39 views

回答

3

您可以使用mod_alias

RedirectMatch 301 ^/$ http://example.com/blog 

或者用于更复杂和有条件的重定向mod_rewrite

RewriteEngine on 
RewriteRule ^$ http://example.com/blog [L,R=301] 

无论做完全一样的,但mod_rewrite的可能并不总是有效。

+0

非常感谢。第一种方法很好用! – Sheldon 2010-05-04 14:37:04

相关问题