0

あるドメインから別のドメインにリダイレクトしたい

www.mydomain.com/abc/def/ghi.html

これに

www.myanotherdomain.com/index.php?c=abc&s=def&p=ghi.html

誰でもこれを解決できますか?

4

1 に答える 1

0

このルールは、3 つのパラメーター (それ以下でもそれ以上でもない) を持つ URL のみを受け入れます。
それぞれに数字、文字、および-(つまり : [a-zA-Z0-9_-])を含めることができます。

RewriteEngine On
RewriteBase /
RewriteRule ^([\w-]+)/([\w-]+)/([\w-]+)\.html$ http://myanotherdomain.com/index.php?c=$1&s=$2&p=$3 [L,R=301]

この htaccess を変更して、1 つ、2 つ、または 3 つのパラメータを許可できます。

RewriteEngine On
RewriteBase /
RewriteRule ^([\w-]+)\.html$ http://myanotherdomain.com/index.php?c=$1 [L,R=301]
RewriteRule ^([\w-]+)/([\w-]+)\.html$ http://myanotherdomain.com/index.php?c=$1&s=$2 [L,R=301]
RewriteRule ^([\w-]+)/([\w-]+)/([\w-]+)\.html$ http://myanotherdomain.com/index.php?c=$1&s=$2&p=$3 [L,R=301]
于 2013-06-27T08:41:38.707 に答える