dongqishou7471 2012-11-20 17: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 20: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 :-)

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

报告相同问题?

悬赏问题

  • ¥15 用verilog实现tanh函数和softplus函数
  • ¥15 求京东批量付款能替代天诚
  • ¥15 slaris 系统断电后,重新开机后一直自动重启
  • ¥15 51寻迹小车定点寻迹
  • ¥15 谁能帮我看看这拒稿理由啥意思啊阿啊
  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题