Ver Mensaje Individual
  #6 (permalink)  
Antiguo 01/07/2011, 08:47
Avatar de RIVERMILLOS
RIVERMILLOS
 
Fecha de Ingreso: marzo-2010
Mensajes: 1.336
Antigüedad: 14 años, 8 meses
Puntos: 15
Respuesta: Problema con url y caracteres.

Este es el htacces.


Código Apache:
Ver original
  1. Options All -Indexes +FollowSymLinks
  2. RewriteEngine on
  3. RewriteCond %{HTTP_HOST} ^xxxxx.com.co [NC]
  4. RewriteRule ^(.*)$ http://www.xxxxx.com.co/$1 [L,R=301]
  5. ErrorDocument 404 http://www.xxxxxx.com.co/error
  6. ErrorDocument 403 http://www.xxxxxxx.com.co/error
  7.  
  8. <IfModule mod_rewrite.c>
  9. RewriteEngine On
  10. RewriteBase /
  11. RewriteCond %{REQUEST_FILENAME} !-f
  12. RewriteCond %{REQUEST_FILENAME} !-d
  13. RewriteRule ^(.*)$ index.php/$1 [L]
  14. </IfModule>

lo coloque en REQUEST_URI y si funca pero tu me podrias explicar estas configuraciones , porque no entiendo como funcionan he buscado en la web y creo que no hay una explicacion o un tuto sobre esto.

Código PHP:
Ver original
  1. //$config['uri_protocol']   = "PATH_INFO";
  2. $config['uri_protocol'] = "REQUEST_URI";
  3. //$config['uri_protocol']   = "AUTO";