2012-02-29 29 views
0

我有我的博客中的下面的Url。Htaccess ModRewrite:刪除www並更改目錄名稱

http://www.domain.com/live/comments/the_winter_is_set_to_end_the_same_way_it_began_on_a_very_mild_note/

有兩件事情我真的想改變。 -the WWW已得去 -the字的意見應該被設置爲「後」(並非所有網址包含單詞註釋)

從而導致網址像 http://sion.com/live/post/the_winter_is_set_to_end_the_same_way_it_began_on_a_very_mild_note/

的事情是我可以」 t改變博客提供的Urls。我只是想在htaccess中動態改變它們。

回答

2

這裏是你需要的代碼:

Options +FollowSymLinks -MultiViews 
# Turn mod_rewrite on 
RewriteEngine On 
RewriteBase/

RewriteRule ^(live)/comments/(.*)$ http://sion.com/$1/post/$2 [R=301,L,NC]