简体   繁体   中英

Mod_rewrite - redirect query string to homepage

Can you help me redirect this url https://www.theholisticsanctuary.com/?s=%7Bsearch_term_string%7D to homepage using htaccess? I tried it using rank math redirect but no luck. I have tried this but Im afraid it is wrong.

<IfModule mod_rewrite.c>
  RewriteEngine On 
  RewriteCond %{QUERY_STRING} ^s=%7Bsearch_term_string%7D
  RewriteRule ^https://www.theholisticsanctuary.com/? [R=301,L]
</IfModule>

You were close!

<IfModule mod_rewrite.c>
    RewriteEngine On 
    RewriteCond %{QUERY_STRING} ^s=%7Bsearch_term_string%7D
    RewriteRule ^(.*) https://www.theholisticsanctuary.com/$1 [R=301,L,QSA]
</IfModule>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM