-1

如何从一个页面重定向到另一个页面?哦,我的细分是动态的,所以它会改变。

这可能吗?

例子。

www.test.com/oldtest/hello

www.test.com/newtest/hello

或者

www.test.com/oldtest/hellobaby

www.test.com/newtest/hellobaby
4

3 回答 3

4

设置到新 URL 的重定向并将您的段用作变量。

<?php header("Location: www.test.com/newtest/" . $sSegment); ?>
于 2013-10-15T12:50:12.520 回答
0

编写您的 htaccess 文件:

Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI}  ^/oldtest/hello  [NC]
RewriteRule .*   /newtest/hello   [R=301,L]
于 2013-10-15T12:59:53.403 回答
0

尝试这个:

有两种方法可以做到这一点。

1. Using PHP

    <?php header("Location: www.test.com/newtest/hellobaby"); ?>

Use this as a first line in the page.

2. Using javascript

    <script type="text/javascript">
      window.location.href = "www.test.com/newtest/hellobaby";
    </script>
于 2013-10-15T12:54:41.510 回答