Sunday, May 1, 2011

How to Apply 301 Redirects with PHPLD

If your looking to create a permanent 301 redirect on your phpld site so Google picks the URL you want, you can use the following code in your .htaccess file:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]

No comments:

Post a Comment