如何从一个页面重定向到另一个页面?哦,我的细分是动态的,所以它会改变。
这可能吗?
例子。
www.test.com/oldtest/hello
至
www.test.com/newtest/hello
或者
www.test.com/oldtest/hellobaby
至
www.test.com/newtest/hellobaby
设置到新 URL 的重定向并将您的段用作变量。
<?php header("Location: www.test.com/newtest/" . $sSegment); ?>
编写您的 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]
尝试这个:
有两种方法可以做到这一点。
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>