Useful .htaccess Rules
Redirecting old domain name to new domain name with the old page to new page. ? Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L] Hiding .php extension by this rule. Entire .html page on your domain will be translate as .php page. Options +FollowSymLinks RewriteEngine on RewriteRule (.*).html$ $1.php Resolving…continue reading →
Recent Comments