www htaccess redirect

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

Redirecting www to non-www

If you want to do the opposite, the code is very similar:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^domain\.com.do$ [NC]
RewriteRule ^(.*)$ http://domain.com.do/$1 [R=301,L]
  • 1 Los Usuarios han Encontrado Esto Útil
¿Fue útil la respuesta?

Artículos Relacionados

UTF-8 Encoding Debugging Chart

Debugging Chart Mapping Windows-1252 Characters to UTF-8 Bytes to Latin-1 Characters Table for...

HTML redirect

La opción de redirección por medio de código HTML es una de las opciones más populares y simples...

Como hacer un <iframe> en Full Screen

with an additional display:none and JS to show it when the user clicks the appropriate control....