#自动生成.更新时间:2013-08-21 14:59:43
#导航页面:#site#nav/index.html
#内容页面:#site#nav/#id.html
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#导航链接
RewriteRule ([a-zA-Z0-9\_\/\!\-]+)/index.html  index.php?n=$1 [L]
#具体内容页面
RewriteRule ([a-zA-Z0-9\_\/\!\-]+)/(\d+).html  index.php?n=$1&id=$2 [L]
</IfModule>
	