专业编程基础技术教程

网站首页 > 基础教程 正文

php 的页面跳转

ccvgpt 2024-11-27 12:00:55 基础教程 1 ℃

php 的页面跳转

前段时间用RewriteRule 重定向到新页面,主要是为了原来旧版网站的老的网址跳转,但是内容正常显示了,可是网址没有变化,所以只好用header()来跳转,同时为了不影响现在的新的网址访问,只好重新写一个专门跳转的action,在RewriteRule 里定向到这个中间action
例如在.htaccess写
RewriteRule shanghu/shanghuhy.asp$ turn/shop_id/$1[[R=301,L] turn为专门的跳转action
跳转的action
$wangzhi=$_GET[shop_id]?$_GET[shop_id]:$_GET[id]; $url = "http://localhost:8080/canting/".$wangzhi; header("Location:".$url); exit; 最终 展示页是
RewriteRule ^(.*)/canting/([0-9a-zA-Z]+)$ detail/shop_id/$2 [QSA,L]

php 的页面跳转

Tags:

最近发表
标签列表