Ver Mensaje Individual
  #3 (permalink)  
Antiguo 04/02/2019, 16:19
Brujo2
 
Fecha de Ingreso: agosto-2006
Mensajes: 32
Antigüedad: 17 años, 7 meses
Puntos: 1
Respuesta: Problema con .htaccess quitando las www.

Ya lo pude solucionar. Era así:

Código:
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d 
RewriteCond %{SCRIPT_FILENAME} !-f
Rewriterule ^web-(.+)$ web.php?pagina=$1
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
faltaban algunos caracteres en esta linea:
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]