本伪静态仅适用于Apache,其它服务器配置可以参看殷忆似梦
#首页伪静态 RewriteRule ^index\.html$ index.php #信息列表页 RewriteRule ^listinfo-([0-9]{1,})-([0-9]{1,})\.html$ /e/action/ListInfo/index.php?classid=$1&page=$2 #信息内容页 RewriteRule ^showinfo-([0-9]{1,})-([0-9]{1,})-([0-9]{1,})\.html$ /e/action/ShowInfo.php?classid=$1&id=$2&page=$3 #标题分类列表页 RewriteRule ^infotype-([0-9]{1,})-([0-9]{1,})\.html$ /e/action/InfoType/index.php?ttid=$1&page=$2 #TAGS信息列表页 RewriteRule ^tags-([0-9]{1,})-([0-9]{1,})\.html$ /e/tags/index.php?tagname=$1&page=$2
|