dt3358 2014-01-21 00:25
浏览 23
已采纳

PHP mod_rewrite和.htaccess用于干净的URL

I am trying to rewrite the following 3 URLs to translate into the correct pages.

highscore.php is in my main directory

    www.domain.com/clan/
    www.domain.com/highscore.php

    www.domain.com/clan/Halos
    www.domain.com/highscore.php?clan=Halos

    www.domain.com/clan/Halos/Cooking
    www.domain.com/highscore.php?clan=Halos&view=Cooking

I have the following in my .htaccess:

    RewriteEngine On
    #RewriteBase /
    RewriteRule ^clan/([^/]*)$ /highscore.php?clan=$1&view=$2 [L]

This successfully maps the following URL:

    www.domain.com/clan/Halos

to

    www.domain.com/highscore.php?clan=Halos

The following URL goes to the highscore.php page with a null 'clan' parameter

    www.domain.com/clan/

is mapping to

    www.domain.com/highscore.php?clan=

I'm trying to get it to map to

    www.domain.com/highscore.php

When I go to

    www.domain.com/clan/Halos/Cooking

It only recognizes the first parameter 'Halos' and not the second one 'Cooking' ? It takes me to:

    www.domain.com/highscore.php?clan=Halos

Very confused, I need some direction to what I'm doing right and/or wrong.

  • 写回答

2条回答 默认 最新

  • doudou20080720 2014-01-21 00:29
    关注
    RewriteEngine On
    #RewriteBase /
    
    #Rewrite base path
    RewriteRule ^clan/$ /highscore.php [L]
    #Rewrite clan path
    RewriteRule ^clan/([^/]*)$ /highscore.php?clan=$1 [L]
    #Rewrite view path
    RewriteRule ^clan/([^/]*)/([^/]*)$ /highscore.php?clan=$1&view=$2 [L]
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效