我需要设置永久重定向
/models_com/dpanorama/
到
/models_com/dpanorama/?t=cm
我怎样才能用 .htaccess 文件做到这一点?
原谅我没有准确回答你的问题。我不确切知道如何使用.htaccess 来做到这一点。但你不能只在你的 php 脚本上强制执行吗?就像是:
if (!isset($_GET["t"])){
$t = "cm";
}
试试这个 :
RewriteEngine on
RewriteCond %{QUERY_STRING} !t=cm
RewriteRule ^models_com/dpanorama/$ /models_com/dpanorama/?t=cm [L,R=301]