![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
10/03/2017, 00:30
|
| | Fecha de Ingreso: octubre-2008 Ubicación: EsPaCiO TiEmPo
Mensajes: 408
Antigüedad: 16 años, 3 meses Puntos: 5 | |
Respuesta: Web.config a .htaccens Me olvide de ponerlo
Código:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*)/$ $1 [NC,R]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(([^/]+))?(([^/]+))?$ index.php?action=$2&data=$4 [NC,L]
|