What's the meaning of the 986 in your username?
Thanks for the other thread, but the .htaccess "redirect" does not fix the problem. My server gets hung in a loop when I try this. All access is redirected back to itself.
This site is hosted by Mindspring; Apache on DecAlpha.
Is there a way for the .htaccess to determine which URL was called? Is there a way to rewrite the URL?
ANY IDEAS??????
> What's the meaning of the 986 in your username?
The "986" corresponds to the post office box in my mailing address.
"MSR" are my initials.
Marty
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.MY_DOMAIN\.com [NC]
RewriteRule ^/(.*) [MY_DOMAIN.com...] [P]
This does not seem to have an effect. Is there something wrong with the statement?
Got it, this is what worked:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.MY_DOMAIN\.com [NC]
RewriteRule ^(.*) [MY_DOMAIN.com...] [L]
Thanks!