从example.com/file.php重定向到example.com/file.php?id=1

时间:2015-04-18 19:56:46

标签: apache .htaccess mod-rewrite redirect webserver

如何使用example.com/file.phpexample.com/file.php?id=1重定向到.htaccess

我希望.htaccess自动将?id=1添加到此特定链接,但不会自动添加到其他.php文件中,只需添加此特定file.php

1 个答案:

答案 0 :(得分:0)

您可以在DOCUMENT_ROOT/.htaccess文件中使用此代码:

RewriteEngine On

RewriteCond %{QUERY_STRING} (^|&)id=1(&|$) [NC]
RewriteRule ^file\.php$ $0?id=1 [L,NC,QSA,R=302]

参考文献: