|
本帖最后由 轻翼逐月 于 2012-8-7 16:07 编辑
ci中建立了一个app,为news,指定域名为 news.new_ci.com , 要在这个目录下实行重写,在news/.htaccess中
- RewriteCond %{HTTP_HOST} ^news\.new_ci\.com [NC]
- #RewriteRule read-(\d+)\.html [url=http://news.new_ci.com/index.php/read/index/]http://news.new_ci.com/index.php/read/index/[/url]$1
- RewriteRule read-(\d+)\.html index.php/read/index/$1
复制代码
注释的那行可以访问,但是会301,下面那种写法不行,要实现输入 news.new_ci.com/read-1573.html 实际访问的为news.new_ci.com/index.php/read/index/1573应该怎么写规则?
|
|