Webサイトの古いURLを別のWebサイトの新しいURLにリダイレクトしています。Zeus Webサーバーを使用しており、最初の2つのルールは問題なく機能します。ただし、クエリ文字列が含まれている3番目のURLでボールを再生していないようです...これを修正する方法について何かアイデアはありますか??
これを試合から外すとうまくいくので、特殊文字を処理するために正規表現が必要になる可能性があるようです。ありがとう
match URL into $ with ^/$
if matched
set OUT:Location = http://www.website.co.uk/
set OUT:Content-Type = text/html
set RESPONSE = 301
set BODY = Moved
goto END
endif
match URL into $ with ^/index.php$
if matched
set OUT:Location = http://www.website.co.uk/
set OUT:Content-Type = text/html
set RESPONSE = 301
set BODY = Moved
goto END
endif
match URL into $ with ^/index.php?cPath=1_50$
if matched
set OUT:Location = http://www.website.co.uk/categories.php?category=Boilers
set OUT:Content-Type = text/html
set RESPONSE = 301
set BODY = Moved
goto END
endif