url rewrite正则式问题

014zx 2008-03-05 04:27:04
原来
RewriteRule ^/(.*)/(.*)\.html /index.php\?controller=$1&action=$2
www.xxx.com/city/index.html
解释成www.xxx.com/index.php?controller=city&action=index

现在想实现
把www.xxx.com/city
解释成www.xxx.com/index.php?user=city

规则写成
RewriteRule ^/(.*) /index.php\?user=$1
确实可以实现www.xxx.com/city重写成www.xxx.com/index.php?user=city

但是www.xxx.com/city/index.html
却被重写成www.xxx.com/index.php?user=city/index.html

请问这个规则该怎样改
RewriteRule ^/(.*) /index.php\?user=$1
或还有其他的实现方法
...全文
437 12 打赏 收藏 转发到动态 举报
写回复
用AI写文章
12 条回复
切换为时间正序
请发表友善的回复…
发表回复
猛禽 2008-03-20
  • 打赏
  • 举报
回复
RewriteRule ^/(.*) /index.php\?user=$1
这条改成:
RewriteRule ^/([^/]*)$ /index.php\?user=$1
试试
014zx 2008-03-20
  • 打赏
  • 举报
回复
自己顶一下
014zx 2008-03-17
  • 打赏
  • 举报
回复
我还是没有解决
望高手赐教
014zx 2008-03-11
  • 打赏
  • 举报
回复
自己顶一下
014zx 2008-03-10
  • 打赏
  • 举报
回复
自己顶一下
014zx 2008-03-07
  • 打赏
  • 举报
回复
[Quote=引用 5 楼 myvicy 的回复:]
把你的两条都写上
RewriteRule ^/(.*)/(.*)\.html /index.php\?controller=$1&action=$2
RewriteRule ^/(.*) /index.php\?user=$1
[/Quote]

我就是这样写的,第二条会把该第一条重写的也重写

www.xxx.com/city/index.html 会被重写成www.xxx.com/index.php?user=city/index.html
而不是希望的www.xxx.com/index.php?controller=city&action=index
014zx 2008-03-07
  • 打赏
  • 举报
回复
谢谢 shaozi110

我试了
RewriteRule ^/(.*)/(.*)/(.*)/ /index.php\?user=$2
RewriteRule ^/(.*)/(.*)/ /index.php\?user=$2
还是不行

www.xxx.com/city ,city是不固定的,是个参数

因为规则重写是瀑布型的,由上至下读取,所以可以先写个小范围的,在写个大范围的

这个能否说的详细些
myvicy 2008-03-07
  • 打赏
  • 举报
回复
把你的两条都写上
RewriteRule ^/(.*)/(.*)\.html /index.php\?controller=$1&action=$2
RewriteRule ^/(.*) /index.php\?user=$1
shaozi110 2008-03-07
  • 打赏
  • 举报
回复
要实现把www.xxx.com/city
解释成www.xxx.com/index.php?user=city
这是些正则表达式

如果city是固定的话,可以这样写
RewriteRule ^/(.*)/(city)/ /index.php\?user=$2

如果不是固定的话

RewriteRule ^/(.*)/(.*)/(.*)/ /index.php\?user=$2
RewriteRule ^/(.*)/(.*)/ /index.php\?user=$2

因为规则重写是瀑布型的,由上至下读取,所以可以先写个小范围的,在写个大范围的

你试一下吧
014zx 2008-03-06
  • 打赏
  • 举报
回复
自己顶一下
014zx 2008-03-06
  • 打赏
  • 举报
回复
希望高手能帮忙
hanchuangyanyu 2008-03-05
  • 打赏
  • 举报
回复
关注一下

24,923

社区成员

发帖
与我相关
我的任务
社区描述
Web 开发 Apache
社区管理员
  • Apache
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧