使用htaccess缩短长网址字符串

时间:2018-09-22 03:11:54

标签: .htaccess smarty

我对.htaccess还是很陌生,但是我非常需要缩短一些网址,例如

mydomain.com/pet-friendly-cottages.php? opt40 =是&opt9 =是&opt7 = 9

是否可以用.htaccess隐藏问号后的结尾部分?

此位=> opt40 =是&opt9 =是&opt7 = 9

非常感谢Jase。

1 个答案:

答案 0 :(得分:1)

您应该像这样使用Rewrite

RewriteEngine on
RewriteRule ^pets/([^/]*)/([^/]*)/([^/]*)$ /pet-friendly-cottages.php.php?opt40=$1&opt9=$2&opt7=$3 [L]

然后您的网址将如下所示: site.com/pets/opt40/opt9/opt7