- Help - Newbie Apache Question
- Posted by Robert on June 17th, 2004
I need to config Apache (1.3) so that request "www.helloworld.com"
is rewriteen/redirected to "www.helloworld.com/welcome/home"
How is this normally done on Apache ? via Rewrite module ?
How to write the rewrite rule ?
Thanks for help
robert
- Posted by Richard Watson on June 17th, 2004
"Robert" <rchin@spammenot_panix.com> writes:
You could use mod_rewrite but it's easier to do
Redirect / http://www.helloworld.com/welcome/home/
--
Richard Watson
http://www.opencolo.com/
High Quality, Value for money colocation
- Posted by Robert on June 17th, 2004
thanks how is the RewriteRule for :
www.hello.com/users/robert/some_cgi_call
to
www.hello.com/users/some_cgi_call
thanks
- Posted by Richard Watson on June 18th, 2004
"Robert" <rchin@spammenot_panix.com> writes:
Not really necessary to use mod_rewrite for that either (although you
could), I think a simple alias should cover it:
Alias /users/robert/some_cgi_call /real/filesystem/path/to/some_cgi_call
--
Richard Watson
http://www.opencolo.com/
High Quality, Value for money colocation


