2022年4月23日星期六

使用首页进行301跳转

PHP代码

<?php
// zd.example.com和example.com跳转到http://example.com:555
$the_host = $_SERVER['HTTP_HOST'];
$request_uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';
if(($the_host == 'zd.example.com')or($the_host == 'example.com'))
{
header('HTTP/1.1 301 Moved Permanently');
header('Location: http://zd.example.com:555'.$request_uri);//
}
// tz.example.com 则跳转到http://example.com/tz.php
elseif($the_host =="tz.example.com")
{
header("HTTP/1.1 301 Moved Permanently");
Header("Location: http://example.com/tz.php");
}
// 其他则跳转到404页面
else
{
Header("Location: /404.html");
}
?>

HTML代码

<html>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type ="text/javascript">
document.location.href="http://" + document.location.hostname +":555";
</script>
<head>
<title>document.location</title>
</head>
<body>
<div class="landing-navigation-tablet-top-adjustment"></div>
<a href="http://zd.example.com:555" target="_blank">
<font color=orange size="6px">如果没有跳转请点击(</font></center></a><br>
</a>
</body>
</html>


推荐 :

  • Node.js安装的两种方法🤔Node.js安装的两种方法1、运行以下命令sudo apt update sudo apt install yarn上面的命令同时会安装 Node.js。如果你已经通过 nvm 安装了 Node,使用以下命令跳过 Node.js 安装过程:sudo apt install --no-inst… 继续阅读
  • 在Ubuntu 22.04 上安装 Xrdp 服务器(远程桌面) 一、安装桌面环境Ubuntu 服务器通常使用命令行进行管理,并且默认没有安装桌面环境。如果你正在运行 Ubuntu 桌面版,忽略这一步。在 Ubuntu 源仓库有很多桌面环境供你选择。一个选择是安装 Gnome,它是 Ubuntu 22.04 的默认桌面环境。另外一个选项就是安装 xfc… 继续阅读
  • 安装mariadb数据库 #安装mariadb数据库apt install mariadb-server启动mariadb数据库sudo systemctl status mariadb初始设置mysql_secure_installationEnter current password for root (en… 继续阅读
  • Apache2及Nginx的安装启动Apache安装sudo apt update安装apache:apt-get install apache2安装PHP和Apache PHP模块:sudo apt install php libapache2-mod-php安装完软件包后,请重新启动Apache以加载PHP模块:sudo syst… 继续阅读
  • Linux自动挂载磁盘的方法 来自宝塔的自动挂载磁盘脚本: #!/bin/bash PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin export PATH LANG=en_US.UTF-8 setup_path=/www … 继续阅读