我有两种不同的网页设计(用PHP,HTML,CSS和JavaScript创建)我可以上传这两种网页并且不时地进行切换吗?
如何重定向以便我可以选择在打开网站时显示的设计?
答案 0 :(得分:0)
尝试使用此代码:
if(some condition here)
header('Location:design1.php');
else if(some condition here)
header('Location:design2.php');
或者您也可以使用包含功能。
if(some condition here)
include("design1.php");
else if(some condition here)
include("design2.php");
感谢。