2012-02-29 13 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/

のようなURLに結果の

(ないすべてのURLは、単語のコメントが含まれている)に設定する必要があり を行くことを持っていますブログが提供するURLを変更しないでください。 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] 
関連する問題