URL reescrita com múltiplos parâmetros usando .htaccess

4

Eu tenho tentado criar algumas regras de reescrita nas últimas horas e estou falhando miseravelmente. Se alguém pudesse ajudar, eu ficaria extremamente grato.

Eu tenho quatro tipos diferentes de reescrita que estou tentando fazer com vários parâmetros em cada um.

Primeiro, os URLs sem modificação:

http://www.example.com/index.php?p=/category/page-slug&pn=2/
http://www.example.com/index.php?p=/category/&f=feed/rss (feed, feed/, feed/rss, feed/atom are the only possible values for the f parameter)
http://www.example.com/index.php?p=tag&t=tag-one+tag-two+-tag-three&pn=2/
http://www.example.com/index.php?p=search&q=search+query+goes+here&pn=2/

Em seguida, o que eu gostaria de poder digitar no navegador:

http://www.example.com/category/page-slug/2/
http://www.example.com/category/feed/rss 
http://www.example.com/tags/tag-one+tag-two+-tag-three/2/
http://www.example.com/search/search+query+goes+here/2/

Finalmente, o que eu tentei, juntamente com inúmeras variações:

RewriteRule ^([a-zA-Z0-9-/+]+)([0-9]+)$ index.php?p=/$1&pn=$2/ [L]
RewriteRule ^([a-zA-Z0-9-/+]+)([a-zA-Z/]+)$ index.php?p=/$1&f=$2/ [L]
RewriteRule ^([a-zA-Z0-9-/+]+)([a-zA-Z/]+)([0-9]+)$ index.php?p=/$1&t=$2&pn=$3/ [L]
RewriteRule ^([a-zA-Z0-9-/+]+)([a-zA-Z/]+)([0-9]+)$ index.php?p=/$1&q=$2&pn=$3/ [L]

Eu sou capaz de manipular apenas o parâmetro p usando:

RewriteRule ^([a-zA-Z0-9-/+]+)$ index.php?p=/$1 [L]

No entanto, tudo mais me escapou completamente. Eu sinto que estou perto, mas é incrivelmente frustrante porque não conheço nenhuma maneira de reduzir o problema. Ele funciona ou não. Agradecemos antecipadamente.

    
por VirtuosiMedia 09.12.2010 / 07:19

1 resposta

3

Aqui você vai: (note que isto retira o "/" final para variáveis pn )

RewriteEngine on
RewriteBase /

RewriteRule ^category/(.*)/([0-9]+) index.php?p=/category/$1&pn=$2 [L]
RewriteRule ^category/feed(.*) index.php?p=/category/&f=feed$1 [L]
RewriteRule ^tags/(.*)/([0-9]+)/ index.php?p=$1&pn=$2 [L]
RewriteRule ^search/(.*)/([0-9]+)/ index.php?p=search&q=$1&pn=$2 [L]

... e um arquivo PHP para simplificar o teste:

<html><head><title>Testing</title></head><body><pre><?php

var_dump($_GET);

echo "\r\n";

var_dump($_SERVER);

?></pre></body></html>

Atualização: Se você planeja ter nomes de categorias variáveis e não pode garantir que o caractere / funcionará como um separador, você deve considerar a análise de URI no próprio aplicativo.

Exemplo de diretivas de reescrita:

RewriteEngine on
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* /index.php [L,QSA]

Exemplo de arquivo PHP:

<?php

  $uri = $_SERVER['REQUEST_URI'];
  $uri_array = explode( "/", $uri );

  switch ( $uri_array[0] ) {
    case '':
      /* serve index page */
    break;
    case 'feed':
      switch ( $uri_array[1] ) {
          case 'atom':
              /* serve atom feed */
          break;
          case 'rss':
              /* serve RSS feed */
          break;
          default:
              /* default feed behavior */
          break;
      }
    break;
    case 'tags':
        $tags = ($uri_array[1]) ? $uri_array[1] : '';
        $page_number = ($uri_array[2]) ? $uri_array[2] : 1;
        /* tag display behavior */
    break;
    default:
        $category = ($uri_array[1]) ? $uri_array[1] : '';
        $page_number = ($uri_array[2]) ? $uri_array[2] : 1;
        /* category lookup behavior + return 404 if category not found */
    break;
  }
?>
    
por 09.12.2010 / 09:15