You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Csanyi Pal <cs...@gmail.com> on 2012/05/26 21:20:51 UTC

[users@httpd] How to redirect index page?

Hi,

on my apache2 server I have installed two aliases:
joomla in /usr/share/joomla/
and 
moodle in /usr/share/moodle.

In /etc/apache2/conf.d/moodle I have the line:
Alias /moodle /usr/share/moodle/

and in /etc/apache2/conf.d/joomla I have the line:
Alias /joomla /usr/share/joomla/

One can open booth sites:
http://cspl.me/joomla
and
http://cspl.me/moodle

In /var/www/ I have only an index.html file.

How can I redirect the index.html page so if one want to open the
http://cspl.me then get opened only the http://cspl.me/joomla and from
there if want can open from a menu the http://cspl.me/moodle ?

Any advices will be appreciated!

-- 
Regards from Pal


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] Re: How to redirect index page? - SOLVED

Posted by Csanyi Pal <cs...@gmail.com>.
Csanyi Pal <cs...@gmail.com> writes:

> Hi,
>
> on my apache2 server I have installed two aliases:
> joomla in /usr/share/joomla/
> and 
> moodle in /usr/share/moodle.
>
> In /etc/apache2/conf.d/moodle I have the line:
> Alias /moodle /usr/share/moodle/
>
> and in /etc/apache2/conf.d/joomla I have the line:
> Alias /joomla /usr/share/joomla/
>
> One can open booth sites:
> http://cspl.me/joomla
> and
> http://cspl.me/moodle
>
> In /var/www/ I have only an index.html file.
>
> How can I redirect the index.html page so if one want to open the
> http://cspl.me then get opened only the http://cspl.me/joomla and from
> there if want can open from a menu the http://cspl.me/moodle ?

I solve this problem by editing the 
/etc/apache2/sites-enabled/000-default

file:
#       DocumentRoot /var/www
        DocumentRoot /usr/share/joomla

and

#       <Directory /var/www/>
        <Directory /usr/share/joomla/>

Is this the right solution?

-- 
Regards from Pal


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] How to redirect index page?

Posted by Clay Porter <cl...@gmail.com>.
There are a few ways.  You can use an Apache redirect documented here:

http://httpd.apache.org/docs/2.2/mod/mod_alias.html#redirect

or Apache RewriteRule:

http://httpd.apache.org/docs/2.2/rewrite/

or you can add an HTML redirect to your index.html:

http://www.w3schools.com/html/tryit.asp?filename=tryhtml_redirect


On Sat, May 26, 2012 at 3:20 PM, Csanyi Pal <cs...@gmail.com> wrote:
> Hi,
>
> on my apache2 server I have installed two aliases:
> joomla in /usr/share/joomla/
> and
> moodle in /usr/share/moodle.
>
> In /etc/apache2/conf.d/moodle I have the line:
> Alias /moodle /usr/share/moodle/
>
> and in /etc/apache2/conf.d/joomla I have the line:
> Alias /joomla /usr/share/joomla/
>
> One can open booth sites:
> http://cspl.me/joomla
> and
> http://cspl.me/moodle
>
> In /var/www/ I have only an index.html file.
>
> How can I redirect the index.html page so if one want to open the
> http://cspl.me then get opened only the http://cspl.me/joomla and from
> there if want can open from a menu the http://cspl.me/moodle ?
>
> Any advices will be appreciated!
>
> --
> Regards from Pal
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org