Shashi Dhar Kumar

Shashi Dhar Kumar's Technical Blog - By Shashi Dhar Kumar

Let us help to connect you with new and innovative world of
online presence!

  • Rated2.2/ 5
  • Updated 4 Years Ago

Redirect from non-www to www in CakePHP - Shashi Dhar Kumar

Updated 7 Years Ago

Redirect From Non-www To Www In CakePHP - Shashi Dhar Kumar
How to redirect from non-www to www in CakePHP? Put the following code into .htaccess in main directory RewriteCond %{HTTPS} !=on RewriteCond %{HTTP_HOST} !^www..+$ [NC] RewriteCond %{HTTP_HOST} !=localhost [NC] RewriteCond %{HTTP_HOST} !=127.0.0.1 RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L] Read More