|
本人已经rewrite index.php
但我还想 把 .com/about/view/3 重写成 .com/about/view/id-3.html .
我试过routes 但是还不行,rewrite规则也没写出来
我是在这样写的(当时没有效果)
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt|nineadmin|ckeditor|ckfinder|attachment|swfupload|style)
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteEngine on
RewriteRule ^about/overview/id_([0-9]+)\.html about/overview/$1[R]
能有人帮帮我吗?
|
|