Thank you for your help.
I'd like to know how to redirect the URL with the old site query to the URL without the new site query.
New site: "http://www.example.jp/brand/nike "
Below is the configuration that I wrote halfway through.
RewriteCon"%{QUERY_STRING}"^option=com_virtualemart&page=shop.browse&manufacturer_id=4"[OR]
RewriteCon "%{QUERY_STRING}" ^option=com_virtualemart&page=shop.browse&manufacturer_id=4&Itemid=62" [OR]
RewriteCon "%{QUERY_STRING}" ^option=com_virtuemart&page=shop.browse&manufacturer_id=4&Itemid=62&limitstart=0" [OR]
RewriteCon"%{QUERY_STRING}"^option=com_virtualemart&page=shop.browse&manufacturer_id=4&Itemid=62&limitstart=0&lang=ja"[OR]
RewriteCon "%{QUERY_STRING}" ^option=com_virtuemart&page=shop.browse&manufacturer_id=4&Itemid=62&limitstart=0&lang=en" [OR]
RewriteRule Pattern http://www.example.jp/brand/nike [R=301,L]
"Orially, I was looking at the ""Apache Cookbook"" while setting it up, but I was having trouble setting the regular expression pattern in the RewriteRule."I don't know what to set up.
I look forward to your kind cooperation.
apache
RewriteRule^.*$http://www.example.jp/brand/nike [R=301,L]
Wouldn't that be all right?
© 2024 OneMinuteCode. All rights reserved.