php 实现SEO之伪静态

网络整理 - 08-29

  看看怎么实现:因为笔者的虚拟主机是 IIS 而非 Apache ,所以只写 httpd.ini 的伪静态方法

  [ISAPI_Rewrite]

  #已配置了伪静态的可以删除

  CacheClockRate 3600

  RepeatLimit 32

  #拟静态:目录形式

  RewriteRule ^(.*)/(post|record|sort|author|page)/([0-9]+)$ $1/index.php\?$2=$3

  RewriteRule ^(.*)/tag/(.+)$ $1/index.php\?tag=$2

  #拟静态:html形式

  RewriteRule ^(.*)/(post|record|sort|author|page)-([0-9]+)\.html$ $1/index.php\?$2=$3

  RewriteRule ^(.*)/tag-(.+)\.html$ $1/index.php\?tag=$2

  将 httpd.ini 置于网站根目录下即可。具体意思看注释,了解正则的话很容易理解!