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.
.htaccess を使用して、次のリクエストをリダイレクトしたいと思います。
http://www.oldwebsite.com/?feed=rss2
私の新しいウェブサイトへ:
http://www.newwebsite.com/feed/
それを行う簡単な方法はありますか?
QUERY_STRING条件でキャプチャする必要があります。
QUERY_STRING
RewriteCond %{QUERY_STRING} ^feed= RewriteRule .+ http://www.newwebsite.com/feed [R=301,L]