私のサイトをwwwからwwwにリダイレクトしようとしています。私のサイトは[http://www.alennuskoodit.us]です。私は、wwwがないすべてのリクエストがwwwにリダイレクトされるようにしようとしています。これまでの通常のもの。私はhttp://alennuskoodit.usに行けばSEOに適したクエリ文字列でwww以外のURLにリダイレクト
はしかし、私はここで終わる:http://www.alennuskoodit.us/index.php?qstr=http://www.alennuskoodit.us
これは.htaccessファイルです:
Options +FollowSymLinks
Options +Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase/
# going to install folder
RewriteCond %{REQUEST_URI} (.*)/install/?$
RewriteRule ^(.*)$ %1/install/index.php [NE,R,L]
# going to Admin folder
RewriteCond %{REQUEST_URI} (.*)/admin/?$
RewriteRule ^(.*)$ %1/Admin/index.php [NE,R,L]
# working with client side
RewriteRule ^(.*)/$ index.php?qstr=$1 [L]
</IfModule>
これは私が仕事しない、しようとしたものです:
RewriteCond %{HTTP_HOST} ^alennuskoodit.us [NC]
RewriteRule ^(.*)$ http://www.alennuskoodit.us/$1 [R=301,NC,L]
すべてのクエリをhttp://alennuskoodit.us〜http://www.alennuskoodit.usにリダイレクトすると、他のリライトが破られることはありません。
うわー、うまくいった。どうもありがとうございます! –