domain.com->www.domain.com Apache Redirect


/ Published in: Apache
Save to your folder(s)

This redirect is domain independent.


Copy this code and paste it in your HTML
  1. RewriteCond %{HTTP_HOST} !^www\.
  2. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

Report this snippet


Comments


You need to login to view comments.