Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなURLをリダイレクトできるように、RewriteRuleを作成しようとしています
http://example.com/cont.php?fdsfsd=fdsfsd
次のような文字 %3 を含むパラメータを持つ URL へ:
http://example.com/another.php?var=ntvpz2hrzm0&cof=FORID%3dsa
% の前にバックスラッシュを付けます
RewriteRule cont.php another.php?var=ntvpz2hrzm0&cof=FORID\%3dsa [R=301,NE,L]
NE フラグは、後のプロセスが % 記号をエスケープしようとするのを防ぐためにも必要な場合があります。