Okay here is my .htaccess file:
Code:
Options -Indexes
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^rsptime\.ca
RewriteRule ^(.*)$ http://www.moneytime.ca/$1 [R=permanent,L]
RewriteCond %{HTTP_HOST} ^www\.rsptime\.ca
RewriteRule ^(.*)$ http://www.moneytime.ca/$1 [R=permanent,L]
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName www.lowermypayments.ca
AuthUserFile /blah/blah/service.pwd
AuthGroupFile /blah/blah/service.grp
Now I don't get the 500 error and it redirects as before but I ran webbug and still got:
Code:
HTTP/1.1 200 OK
Date: Wed, 12 Apr 2006 20:12:07 GMT
Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
X-Powered-By: PHP/4.3.11
Connection: close
Content-Type: text/html
Now... My understanding is because it has a code of 200 then it isn't doing the redirect permanently as I have in the .htaccess file. So, should I *un-park* the domain rsptime.ca in my Cpanel??
Last edited by jim.thornton; 04-12-2006 at 05:15 PM..
|