# 将 RewriteEngine 模式打开
RewriteEngine On

# 修改以下语句中的 / 为你的网站目录地址，如果程序放在二级目录中，如/phpcms 请将 / 修改为 /phpcms

# 如果您在httpd.conf中已经设置了重写规则，请去掉下面的注释

#RewriteBase /
# Rewrite Rules

RewriteRule ^(.*)show-([0-9]+)-([0-9]+)\.html$ $1/show.php?contentid=$2&page=$3
RewriteRule ^(.*)list-([0-9]+)-([0-9]+)\.html$ $1/list.php?catid=$2&page=$3
RewriteRule ^(.*)show-([0-9]+)\.html$ $1/show.php?specialid=$2