0

示例:当有人访问此 URL

http://example.com/site/register

我希望自动添加此查询字符串:

http://example.com/site/register?destination=thankyou

我在 .htaccess 文件中尝试了以下内容:

重定向 301 /site/register /site/register?destination=thankyou

但这会创建一个无限重定向循环。

我已经在网上搜寻了几个小时以寻求解决方案,但无济于事。提前致谢。

4

1 回答 1

0

如果register是 PHP,使用类似:

<?php
  if(!array_key_exists('destination',$_GET))
    header('Location: '.http_build_query(
        array_merge($_GET,array('destination'=>'thankyou')));
于 2013-06-24T15:12:00.337 回答