|
Home > Archive > WebSphere HTTP Server > September 2005 > external apache redirect documentroot to wps/portal
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
external apache redirect documentroot to wps/portal
|
|
| enoxard 2005-09-06, 6:10 pm |
| hello all,
i was able to abstract the webtier to an apache machine using the
configuring your webserver docs on the infocenter [
http://publib.boulder.ibm.com/pvc/w.../en/InfoCenter/ ]
this seems to workfine when entering the domainname of the webserver
followed by wps/portal. however, requests sent to the domainname are
served the local apache test page.
for example http://10.0.0.154 gets the local apache test page and
http://10.0.0.154/wps/portal gets the portal. id like requests sent to
http://10.0.0.154 also be served the portal..
ive tried modrewrite, but it didnt seem to like my directives and tells
me redirection limits have been reached and complains more about cookies.
im hoping someone here has knowledge of this configuration and what i
may do to get back on track..
any suggestions appreciated..
thanks
e-
| |
| Ray McVay 2005-09-06, 6:10 pm |
| I believe you'll have to set the context root of the portal to "/" to
get that behavior.
enoxard wrote:
> hello all,
>
> i was able to abstract the webtier to an apache machine using the
> configuring your webserver docs on the infocenter [
> http://publib.boulder.ibm.com/pvc/w.../en/InfoCenter/ ]
>
> this seems to workfine when entering the domainname of the webserver
> followed by wps/portal. however, requests sent to the domainname are
> served the local apache test page.
>
> for example http://10.0.0.154 gets the local apache test page and
> http://10.0.0.154/wps/portal gets the portal. id like requests sent to
> http://10.0.0.154 also be served the portal..
>
> ive tried modrewrite, but it didnt seem to like my directives and tells
> me redirection limits have been reached and complains more about cookies.
>
> im hoping someone here has knowledge of this configuration and what i
> may do to get back on track..
>
> any suggestions appreciated..
>
> thanks
>
> e-
| |
| Sunit Patke 2005-09-07, 5:58 pm |
| In the DocumentRoor of your HTTP server change the index.html document with
the following code.
<html>
<HEAD>
<META HTTP-EQUIV=Refresh CONTENT="0;URL=/wps/portal">
</HEAD>
<body>
</body>
</html>
When you type just the domain name of the server, the index.html document is
displayed from your document root. The above document will cause a redirect
to /wps/portal
Sunit
"enoxard" <crx@drunkenmonks.net> wrote in message
news:dfl3a2$3u84$1@news.boulder.ibm.com...
> hello all,
>
> i was able to abstract the webtier to an apache machine using the
> configuring your webserver docs on the infocenter [
> http://publib.boulder.ibm.com/pvc/w.../en/InfoCenter/ ]
>
> this seems to workfine when entering the domainname of the webserver
> followed by wps/portal. however, requests sent to the domainname are
> served the local apache test page.
>
> for example http://10.0.0.154 gets the local apache test page and
> http://10.0.0.154/wps/portal gets the portal. id like requests sent to
> http://10.0.0.154 also be served the portal..
>
> ive tried modrewrite, but it didnt seem to like my directives and tells me
> redirection limits have been reached and complains more about cookies.
>
> im hoping someone here has knowledge of this configuration and what i may
> do to get back on track..
>
> any suggestions appreciated..
>
> thanks
>
> e-
| |
| enoxard 2005-09-26, 6:06 pm |
| Sunit Patke wrote:
> In the DocumentRoor of your HTTP server change the index.html document with
> the following code.
>
> <html>
> <HEAD>
> <META HTTP-EQUIV=Refresh CONTENT="0;URL=/wps/portal">
> </HEAD>
> <body>
> </body>
> </html>
>
> When you type just the domain name of the server, the index.html document is
> displayed from your document root. The above document will cause a redirect
> to /wps/portal
>
> Sunit
>
> "enoxard" <crx@drunkenmonks.net> wrote in message
> news:dfl3a2$3u84$1@news.boulder.ibm.com...
>
>
>
>
perfect indeed..
thx.
|
|
|
|
|