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.
私は以下のページをリダイレクトしようとしています
http://www.example.com/taksit.asp?urundetay
に
http://www.example.com/
しかし、それはにリダイレクトします
http://www.test.com/?urundetay
以下の.htaccessが機能していませんが、修正するにはどうすればよいですか?
RewriteRule ^(.*)taksit\.asp(.*)$ $1 [R=301,L]
既存の RewriteRule を次のように置き換えます。
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+taksit\.asp\?[^\s&]+ [NC] RewriteRule ^ /? [R=301,L]