使用.htaccess重定向网址

时间:2015-10-14 07:12:04

标签: apache .htaccess mod-rewrite lamp url-redirection

如何使用htaccess重定向网址。我只是尝试了很多,但找不到任何正确的方法。

  

https://demo.com/test.php?value=345

  

https://demo.com/test.php?convert=1&p=345

2 个答案:

答案 0 :(得分:4)

试试这个

RewriteEngine on
RewriteRule  ^test.php/?$ test.php?convert=1&p=$1  [NC,L]

答案 1 :(得分:0)

更简单的方法:

RewriteEngine On
RewriteCond %{QUERY_STRING} ^value=(\d+)$ [NC]
RewriteRule ^test\.php$ /test.php?convert=1&p=%1 [R=301,L,NC]