Forum Moderators: open
[example.com...] instead of [example.com...]
we cannot figure out a way to redirect it and hence it results in a 404 error.
Plz help it is a major problem.:-(
[edited by: tedster at 12:04 pm (utc) on April 6, 2004]
[edit reason] use example.com [/edit]
Put this line in your .htaccess file:
Options ExecCGI MultiViews
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: [example.com...]
header("Connection: close");
?>
You can do the same with ASP if you're on a Windows server, or at the last resort, you can create an index.html and use a meta refresh.
Hope that helps!
For example: with content negotiation, the url [example.com...] will deliver the same page as this url: [example.com...]
You will need to check with your hosting company on this one (or try the directory approach).