Simple .htaccess redirection and rewriting
Here is quick code for creating redirection for your web site: Redirecting to www: RewriteEngine On RewriteCond %{HTTP_HOST} !^www.example.com$ [NC] RewriteRule ^(.*)$ http://www.example.com/$1…
Free tutorials, Tech News, Source codes, Tweaks and Tips.
Here is quick code for creating redirection for your web site: Redirecting to www: RewriteEngine On RewriteCond %{HTTP_HOST} !^www.example.com$ [NC] RewriteRule ^(.*)$ http://www.example.com/$1…