PHP 伪静态规则、写法

一.伪静态定义(百度百科)


       伪静态是相对真实静态来讲的,通常我们为了增强搜索引擎的友好面,都将文章内容生成静态页面,但是有的朋友为了实时的显示一些信息。或者还想运用动态脚本解决一些问题。不能用静态的方式来展示网站内容。但是这就损失了对搜索引擎的友好面。怎么样在两者之间找个中间方法呢,这就产生了伪静态技术。就是展示出来的是以html一类的静态页面形式,但其实是用ASP(php)一类的动态脚本来处理的。


二.实现伪静态有很多种办法,本文写的是其中一种(301重定向方法)


       1.根目录新建.htaccess文件

       2.伪静态规则其实就是正则匹配,所以按照正则的规则来写就行

        

                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

        

        也可以在这个文件里面写重定向。

        3.跳转地址写法

           



你可能感兴趣的:(PHP重定向)