Ver Mensaje Individual
  #1 (permalink)  
Antiguo 04/04/2008, 06:29
p2pdownloading
Invitado
 
Mensajes: n/a
Puntos:
como esta mi htaccess

hola queria compartir con ust mi htacess para saber si es que tiene algun error, o si podria mejorarse...


para ver como fuinciona www.software-p2p.com

Código PHP:
Options +FollowSymLinks
RewriteEngine on




#search
#http://localhost/descargar/search/ares/
#http://localhost/descargar/search/ares/dName/

RewriteRule ^search/(.*)/$ index.php?action=search&text=$[L,NC]
RewriteRule ^search/(.*)/(.*)/?$ index.php?action=search&text=$1&id=$[L,NC]


#downloads
#www.software-p2p.com/descargar/downloads.48-d4/
#http://localhost/descargar/downloads-d4/ranquing/

RewriteRule ^(.*)-d([0-9]+)/?$ index.php?action=downloads&id=$[L,NC]
RewriteRule ^(.*)-d([0-9]+)/(.*).htmlindex.php?action=downloads&$3=$[L,NC]


#categorias
#www.software-p2p.com/descargar/ares-c10/
#http://localhost/descargar/index.php?action=category&id=1&page=5
#http://localhost/descargar/ares-c10/pagina1.html
#index.php?action=cp&subscribe=0

RewriteRule ^(.*)-c([0-9]+)/pagina([0-9]+).htmlindex.php?action=category&id=$2&page=$[L,NC]
RewriteRule ^(.*)-c([0-9]+)/?$ index.php?action=category&id=$[L,NC]
RewriteRule ^(.*)-s([0-9]+)/?$ index.php?action=cp&subscribe=$[L,NC]
RewriteRule ^(.*)-ss/?$ index.php?action=cp&act=cats [L,NC]




#index
#http://localhost/descargar/search/
RewriteRule ^(.*)/$ index.php?action=$[L,NC
saludos!