search
HomeBackend DevelopmentPHP TutorialIis, apache and PHP page setting 301 redirect jump method_PHP tutorial
Iis, apache and PHP page setting 301 redirect jump method_PHP tutorialJul 13, 2016 am 10:48 AM
301apacheiisphpMethodCanandaccomplishmethodhaveset upJumpRedirectpage

There are many ways to implement 301 redirection, such as iis, apache, php, asp, etc., you can quickly set up page 301 redirection. Let me introduce it to you.

This article will pass IIS, APACHE, ASP, and PHP servers or page terminals respectively explain how to set up 301 redirection. First, let’s briefly introduce redirection.
301 redirection: refers to a very important "automatic redirection" technology - actually not a technology, that is, URL redirection - when users visit an address or directory, they can specify to jump to another address.
301 redirection, this is the only redirection among all redirection methods that conforms to seo/seo.html" target="_blank">search engine rules. This is also a basic term in SEO, for example: a website uses www.bKjia. When c0m and bKjia.c0m are bound, there will be two weights. If bKjia.c0m is redirected to www.bKjia.c0m, the weights will be concentrated and the weight value will be increased accordingly
.
1. Set up 301 redirection on the IIS server
Preparation work: You must have server setting permissions and you can open a new virtual space at will!
First, create a new virtual space and bind the domain name you need to redirect to;
Second, My Computer-->Open "Control Panel"-->"Administrative Tools"-->Open "Internet Information Services", there will be a tree menu on the left, find your website--right click" Properties"--Select the "Home Directory" tab, then select "Redirect to URL", then enter the target domain name that needs to be directed in the address box, and finally select "Permanent redirection of resources" in the tab and click "OK" to complete the operation. Property interface settings, as shown below:



2. Set apache 301 redirection on the Unix/linux host

Create a new .htaccess file and enter the following content (mod_rewrite needs to be turned on):
1) Forward the domain name without WWW to the domain name with WWW
The code is as follows Copy code
Options +FollowSymLinks
 代码如下 复制代码
Options +FollowSymLinks
RewriteEngine on  RewriteCond %{HTTP_HOST} ^bKjia.c0m [NC]
RewriteRule ^(.*)$www.bKjia.c0m/301/[L,R=301]  
RewriteEngine on RewriteCond %{HTTP_HOST} ^bKjia.c0m [NC]
RewriteRule ^(.*)$www.bKjia.c0m/301/[L,R=301]
2) Redirect to new domain name
 代码如下 复制代码
Options +FollowSymLinks
RewriteEngine on  RewriteRule ^(.*)$www.bKjia.c0m/301/ [L,R=301]
The code is as follows Copy code
Options +FollowSymLinks
RewriteEngine on RewriteRule ^(.*)$www.bKjia.c0m/301/ [L,R=301]
3) Use regular rules to perform 301 redirection to achieve pseudo-static
 代码如下 复制代码
Options +FollowSymLinks
RewriteEngine on  RewriteRule ^article-(.+).html$ article.php?id=  将article.php?id=123这样的地址转向到article-123.html
The code is as follows Copy code
Options +FollowSymLinks RewriteEngine on RewriteRule ^article-(.+).html$article .php?id=$1 Redirect the address like article.php?id=123 to article-123.html

3. Set the 301 redirect code in the ASP program page
In the public header file or global call file, add the following code:
The code is as follows
 代码如下 复制代码

Response.Status="301 Moved Permanently" Response.AddHeader "Location", "http://www.bKjia.c0m"
Response.End  end if %>
Copy code



Response.Status="301 Moved Permanently" Response.AddHeader "Location", "http://www.bKjia.c0m" Response.End end if %>
Principle: Determine whether the requested server_name is the same as the main target URL. If not, redirect
 代码如下 复制代码
$host= 'www.bKjia.c0m'; //你目标定向的网址 
if ($_SERVER['HTTP_HOST'] != $host)//若不是则进行重定向,后面页面参数不变
{ header("HTTP/1.1 301 Moved Permanently"); header("Location: http://{$host}{$_SERVER[REQUEST_URI]}");
}
unset($host);
4. Set 301 redirection in the PHP program page
The code is as follows:

(more perfect way of writing)

The code is as follows Copy code
$host= 'www.bKjia.c0m' ; //Your target URL if ($_SERVER['HTTP_HOST'] != $host)//If not, redirect will be performed, and the subsequent page parameters will remain unchanged { header("HTTP/1.1 301 Moved Permanently"); header("Location: http://{$host}{$_SERVER[REQUEST_URI]}"); } unset($host); Principle: First define the target directional URL, and then determine whether the host currently requested to access is consistent. If not, redirect it
http://www.bkjia.com/PHPjc/632814.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632814.htmlTechArticleThere are many ways to implement 301 redirection, such as iis, apache, php, asp, etc. can all be implemented quickly The settings page has a 301 redirect. Let me introduce to you what this article will teach you...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Windows安装nginx1.10.1反向代理访问IIS网站的方法Windows安装nginx1.10.1反向代理访问IIS网站的方法May 23, 2023 pm 05:40 PM

首先去官网下载软件包,解压,路径最好不要有中文nginx配置的路径问题由于在windows下文件路径可以用”\”,也可以用”\\”,也可以用”/”作为路径做分隔符。但”\”最容易引发问题,所以要尽量避免使用。不要添加path,否则会引发错误,config文件路径找不到比如我解压在e盘cmd命令定位到nginx.exe所在文件夹cde:\worksoftware\nginx-1.10.1然后执行,首先保证nginx.conf文件配置没问题其实nginx最重要的和最主要的工作就是配置文件,其他没什么

进程无法访问 Windows 11 / 10 上的文件错误修复进程无法访问 Windows 11 / 10 上的文件错误修复May 12, 2023 pm 07:10 PM

众所周知,当任何文件正在使用时,任何其他进程都无法访问/更改它。在这种情况下,当一个进程试图打开一个文件时,操作系统会锁定该文件以防止它被另一个进程修改。“该进程无法访问该文件,因为它正被另一个进程使用”是许多用户在其Windows计算机上观察到的此类错误消息。已知此错误发生在不同版本的WindowsOS和WindowsServer中。通常,在用户的WindowsPC上使用Netsh命令期间会观察到此错误消息。发生此错误的另一种情况是尝试在Internet信息服务(IIS)M

iis在linux上可以用吗iis在linux上可以用吗Mar 23, 2023 am 09:24 AM

iis不可以在linux上使用,因为iis是由微软公司提供的基于运行Microsoft Windows的互联网基本服务,是在Windows操作系统平台下开发的,所以限制了它只能在Windows操作系统下运行。

php站用iis乱码而apache没事怎么解决php站用iis乱码而apache没事怎么解决Mar 23, 2023 pm 02:48 PM

​在使用 PHP 进行网站开发时,你可能会遇到字符编码问题。特别是在使用不同的 Web 服务器时,会发现 IIS 和 Apache 处理字符编码的方法不同。当你使用 IIS 时,可能会发现在使用 UTF-8 编码时出现了乱码现象;而在使用 Apache 时,一切正常,没有出现任何问题。这种情况应该怎么解决呢?

iis应用程序池怎么打开iis应用程序池怎么打开Apr 09, 2024 pm 07:48 PM

要在 IIS 中打开应用程序池:1. 打开 IIS 管理器;2. 导航到 "应用程序池" 节点;3. 右键单击目标应用程序池并选择 "管理";4. 单击 "高级设置" 选项卡;5. 应用程序池配置可在此查看和修改。

iis无法启动怎么解决iis无法启动怎么解决Dec 06, 2023 pm 05:07 PM

iis无法启动的解决办法:1、检查系统文件完整性;2、检查端口占用情况;3、启动相关服务;4、重新安装IIS;5、重置Windows系统;6、检查元数据库文件;7、检查文件权限;8、更新操作系统和应用程序;9、避免安装过多不必要的软件;10、定期备份重要数据。详细介绍:1、检查系统文件完整性,运行系统文件检查工具,检查系统文件的完整性等等。

iis无法启动解决方法iis无法启动解决方法Oct 24, 2023 pm 03:04 PM

解决方法:1、检查IIS服务是否已安装;2、检查依赖服务;3、检查端口冲突;4、检查配置文件和权限;5、重新注册IIS相关组件;6、检查日志文件。

iis的日志文件可以删除吗怎么删iis的日志文件可以删除吗怎么删Apr 09, 2024 pm 07:45 PM

是的,可以删除 IIS 日志文件。删除方法包括:通过 IIS 管理器选择网站或应用程序池,然后在“日志文件”选项卡中删除相应日志文件。使用命令提示符转到日志文件存储目录(通常为 %SystemRoot%\System32\LogFiles\W3SVC1),并使用 del 命令删除日志文件。使用第三方工具(例如 Log Parser)自动删除日志文件。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.