您需要使用查询参数重写和重定向URL
例如:
此URL:garrymbsmith。com/?nava=触点
目标URL:www.garrymbsmith。com公司
.htaccess语法:
RewriteEngine on
RewriteCond %{QUERY_STRING} nava=contact
RewriteRule ^index\\.php$ /? [L,R=301]
有关不同htaccess规则/场景的详细参考,您可以参考以下很棒的资源:
https://gist.github.com/ScottPhillips/1721489Update Added After Comment
请尝试此htaccess我获取了您的htaccess代码并对其进行了修改,请告诉我是否有效?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{QUERY_STRING} nava=contact
RewriteRule .*$ /? [L,R=301]
RewriteBase /
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>