lo que sucede es que tengo habilitado /? entonces google me indexa 2 url por ejmplo
1)mipagina.com/descargar/categoria1
2)mipagina.com/descargar/categoria1/
como puedo hacer para que si alguien accede a traves de la url 1 la barra se pongo automaticamente.
este es mi htaccess que se encuentra en el directorio /descargar/, saludos
Código PHP:
Options +FollowSymLinks
RewriteEngine on
RewriteBase /descargar
#search
#http://localhost/descargar/search/ares/
#http://localhost/descargar/search/ares/dName/
RewriteRule ^(.*)/(.*)/(.*).html$ index.php?action=$1&text=$2&id=$3 [L,NC]
RewriteRule ^(.*)/(.*)/$ index.php?action=$1&text=$2 [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=$2 [L,NC]
RewriteRule ^(.*)-d([0-9]+)/(.*).html$ index.php?action=downloads&$3=$2 [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]+).html$ index.php?action=category&id=$2&page=$3 [L,NC]
RewriteRule ^(.*)-c([0-9]+)/?$ index.php?action=category&id=$2 [L,NC]
RewriteRule ^(.*)-c([0-9]+)/(.*).html?$ index.php?action=category&id=$2&order=$3 [L,NC]
RewriteRule ^(.*)-s([0-9]+)/?$ index.php?action=cp&subscribe=$2 [L,NC]
RewriteRule ^(.*)-ss/?$ index.php?action=cp&act=cats [L,NC]
#index
#http://localhost/descargar/search/
RewriteRule ^(.*)/$ index.php?action=$1 [L,NC]