17/03/2011, 04:44
|
| | Fecha de Ingreso: marzo-2010
Mensajes: 32
Antigüedad: 14 años, 10 meses Puntos: 0 | |
Respuesta: URL amigable en PHP con .HACCESS he parcheado mi PHP y ahora va de perlas
<?php if ($valor[1]<>null) $valor[0] = substr($valor[0], 0,-4); ?>
lo malo es que no se sacar el (.html)
-----------------------------
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 ^(.+).html$ index.php?url=$1
RewriteRule ^(.+)/(.+).html$ index.php?url=$1/$2 |