要求一个简单的重定向脚本

时间:2014-08-27 11:39:19

标签: redirect

我不知道如何创建一个会重定向我的脚本:

http://steamcommunity.com/market/ *(包含steamcommunity市场的任何链接。) 至 https://steamcommunity.com/market/ *

Http to Https。

提前谢谢。

2 个答案:

答案 0 :(得分:1)

创建.htaccess文件并上传到文件夹http://steamcommunity.com/market/

.htaccess内容:

RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

答案 1 :(得分:-1)

在包含头

之类的任何其他代码之前,在要重定向的页面顶部添加此代码
<?php
  header('Location: http://yourdomain.com/your-new-page/', true, 301);
  exit();
?>