今天有时间,遍整理汇总了一下伪静态在网站中的其他妙用知识:
一、Linux主机.htaccess实现301转向
这种重定向旨在使域名唯一,是网站SEO必须要做的:
打开.htaccess文件,加入以下规则。
1.重定向 luoli.net 到 www.luoli.net
RewriteEngine On
RewriteCond %{HTTP_HOST} !^luoli.net$ [NC]
RewriteRule ^(.*)$ http://www.luoli.net/$1 [L,R=301]
2.重定向luoli.net/file/file.php 到 www.luoli.net/otherfile/other.php
RewriteCond %{HTTP_HOST} ^luoli.net$
RewriteRule ^file/file.php$ http://www.luoli.net/otherfile/other.php [R=301,L]