dongqishou7471 2012-11-20 09:24
浏览 47
已采纳

根据变量的数量,使用mod_rewrite重定向到不同的页面

I am currently using the mod_rewrite rule:

RewriteRule ^(.+)/?$ page.php?slug=$1 [L]

This works fine to make /page load page.php?slug=page.

However, I want to URL:

/cat/page

to load

page.php?slug=page

And the URL

/cat

to load the page

cat.php?slug=cat

Is this possible? I could do it on one page.php and use an if to determine which page it should be, however as the code for the category page and the page page is so different, I'd much rather keep them separate.

Thank you,

Sam

Update: More examples, as requested.

/food/pizza loads page.php?slug=pizza

/food loads cat.php?slug=pizza

/animals/pigs loads page.php?slug=pigs

/animals loads cat.php?slug=animals

  • 写回答

1条回答 默认 最新

  • dongzhitao4839 2012-11-20 12:59
    关注
    RewriteEngine On
    
    RewriteCond %{REQUEST_URI} !=page.php
    RewriteCond %{REQUEST_URI} !=cat.php
    RewriteRule ^([^/]+)/([^/]+)/?$ cat.php?slug=$2 [L]
    
    RewriteCond %{REQUEST_URI} !=page.php
    RewriteCond %{REQUEST_URI} !=cat.php
    RewriteRule ^([^/]+)/?$ page.php?slug=$1 [L]
    

    I'm not sure about the names of parameters to cat.php and page.php as your examples are not consistent (sometimes it's slug and sometimes cat?) Anyhow it's minor problem.

    Description: the RewriteCond make sure page.php and cat.php will not be rewritten. Then there are regular expressions matching one or two levels of virtual directories passing the request to correct PHP script.

    EDIT: not. it's passing it to really the correct script :-)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部