11/12/2012, 06:04
|
| | Fecha de Ingreso: febrero-2010 Ubicación: La Habana,Cuba
Mensajes: 89
Antigüedad: 14 años, 9 meses Puntos: 1 | |
Respuesta: mi porpio wamp <IfModule mod_rewrite.c>
# Make sure directory listing is disabled
Options +FollowSymLinks -Indexes
RewriteEngine on
# Send request via index.php (if it's not an existing file/folder)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
<IfModule mod_php5.c>
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule !mod_php5.c>
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
</IfModule>
Pero recuerda ya probe este codigo en un wamp y funciona, si lo pruebo en mi instalacion de apache NO |