Advertisement
Guest User

Untitled

a guest
Mar 30th, 2015
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.80 KB | None | 0 0
  1. RewriteEngine on
  2. RewriteCond %{REQUEST_FILENAME} !-f
  3. RewriteCond %{REQUEST_FILENAME} !-d
  4. RewriteRule ^categoria/([a-zA-Z0-9-_/]+)/?$ categoria.php?categoria=$2 [L,QSA]
  5. RewriteRule ^home([a-zA-Z0-9-_/]+)/?$ index.php?pg=$1 [L,QSA]
  6. RewriteRule ^noticia/([a-zA-Z0-9-_/]+)/?$ noticia.php?id=$1 [L,QSA]
  7. RewriteRule ^noticias([a-zA-Z0-9-_/]+)/?$ noticias.php?url=$1 [L,QSA]
  8. RewriteRule ^contato([a-zA-Z0-9-_/]+)/?$ contato.php?url=$1 [L,QSA]
  9. RewriteRule ^busca([a-zA-Z0-9-_/]+)/?$ busca.php?url=$1 [L,QSA]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement