2012-02-29 85 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]