21/03/2011, 12:57
|
| | Fecha de Ingreso: noviembre-2008
Mensajes: 84
Antigüedad: 16 años Puntos: 1 | |
Respuesta: URL amigable en PHP con .HACCESS Prueba quitando .html en las dos ultimas reglas:
RewriteBase /
#Options +FollowSymLinks
#Options +MultiViews
RewriteEngine on
#RewriteRule ^([^\.]+)$ index.php?url=$1 [NC,L]
RewriteCond %{REQUEST_FILENAME} !-f
#RewriteRule ^(.+)$ index.php?url=$1 [NC,L]
#RewriteRule ^index.php\/(.+)$ index.php?url=$1 [NC,L]
RewriteRule ^(.+)$ index.php?url=$1
RewriteRule ^(.+)/(.+)$ index.php?url=$1/$2 |