伪静态,重定向,Rewrite,实现伪静态有很多种办法,本文写的是其中一种(301重定向方法)
一.伪静态定义(百度百科)
伪静态是相对真实静态来讲的,通常我们为了增强搜索引擎的友好面,都将文章内容生成静态页面,但是有的朋友为了实时的显示一些信息。或者还想运用动态脚本解决一些问题。不能用静态的方式来展示网站内容。但是这就损失了对搜索引擎的友好面。怎么样在两者之间找个中间方法呢,这就产生了伪静态技术。就是展示出来的是以html一类的静态页面形式,但其实是用ASP(php)一类的动态脚本来处理的。
二.实现伪静态有很多种办法,本文写的是其中一种(301重定向方法)
1.根目录新建.htaccess文件
2.伪静态规则其实就是正则匹配,所以按照正则的规则来写就行
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule map.html map.php
RewriteRule index.html index.php
RewriteRule order.html order.php
RewriteRule about.html about.php
RewriteRule login.html login.php
RewriteRule member.html member.php
RewriteRule shopcar.html shopcar.php
RewriteRule contact.html contact.php
RewriteRule register.html register.php
RewriteRule shopcar1.html shopcar1.php
RewriteRule shopcar2.html shopcar2.php
RewriteRule member_view.html member_view.php
RewriteRule ^detail([0-9]*).html$ detail.php?tid=$1
RewriteRule ^case([0-9]*).html$ case.php?tid=$1
RewriteRule ^product_list([0-9]*).html$ product_list.php?tid=$1
RewriteRule ^news_list([0-9]*).html$ news_list.php?tid=$1
RewriteRule ^product_view([0-9]*).html$ product_view.php?tid=$1
RewriteRule ^news_view([0-9]*).html$ news_view.php?tid=$1
RewriteRule ^product_list-([0-9]*)-([0-9]*).html$ product_list.php?tid=$1&bid=$2
</IfModule>
也可以在这个文件里面写重定向。
3.跳转地址写法
<a href="product_view<?=$value['c_id'] ?>.html" title="<?= $value['c_title'] ?>">
【版權聲明】
本文爲轉帖,原文鏈接如下,如有侵權,請聯繫我們,我們會及時刪除
原文鏈接:https://blog.csdn.net/l_iuq_ingy_ang/article/details/80451722 Tag: 伪静态 重定向 Rewrite