Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/06/2011, 14:27
Avatar de metacortex
metacortex
Viejo demente
 
Fecha de Ingreso: junio-2004
Ubicación: Caracas - Venezuela
Mensajes: 9.027
Antigüedad: 20 años, 5 meses
Puntos: 832
Respuesta: ¿esta bien modificado este .htaccess

Inténtalo así:

Código php:
Ver original
  1. RewriteEngine on
  2. RewriteCond %{HTTP_HOST} !^www\.mipaginaweb\.com
  3. RewriteRule (.*) http://www.mipaginaweb.com/$1 [R=301,L]
  4.  
  5. # BEGIN WordPress
  6. <IfModule mod_rewrite.c>
  7. RewriteEngine On
  8. RewriteBase /
  9. RewriteRule ^index\.php$ - [L]
  10. RewriteCond %{REQUEST_FILENAME} !-f
  11. RewriteCond %{REQUEST_FILENAME} !-d
  12. RewriteRule . /index.php [L]
  13. </IfModule>
  14. # END WordPress