
Hi how I make one subdomain go to public.pl and not index.pl I try to make in the directives In apache of this subdomain but always redirect to: subdomain.domain/otrs/index.pl and I like only open subdomain.domain/otrs/public.pl how i make the default file in OTRS is public.pl thanks in advance

Hi Alonso,
In the otrs site structure, you can modify the index.html file
(.../var/httpd/htdocs/) and change
<head>
<meta name="GENERATOR" content="OTRS">
<meta http-equiv="refresh" content="0; URL=/otrs/index.pl">
</head>
to
<head>
<meta name="GENERATOR" content="OTRS">
<meta http-equiv="refresh" content="0; URL=/otrs/public.pl">
</head>
Regards,
C.
On Fri, Jun 13, 2008 at 1:24 AM, arturo alonso
Hi how I make one subdomain go to public.pl and not index.pl
I try to make in the directives In apache of this subdomain but always redirect to: subdomain.domain/otrs/index.pl
and I like only open subdomain.domain/otrs/public.pl
how i make the default file in OTRS is public.pl
thanks in advance
_______________________________________________ OTRS mailing list: otrs - Webpage: http://otrs.org/ Archive: http://lists.otrs.org/pipermail/otrs To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs Support or consulting for your OTRS system? => http://www.otrs.com/

arturo alonso wrote:
Hi how I make one subdomain go to public.pl and not index.pl
You could use mod_rewrite: http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html
I try to make in the directives In apache of this subdomain but always redirect to: subdomain.domain/otrs/index.pl
and I like only open subdomain.domain/otrs/public.pl
how i make the default file in OTRS is public.pl
See the DirectoryIndex directive in the Apache documentation: http://httpd.apache.org/docs/2.0/mod/mod_dir.html#directoryindex Nils Breunese.

Hi Arturo.
This can be done by the webserver. I use apache2 on Linux and point the virtual directory at /var/www (this is almost the default on my Debian installations):
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
participants (4)
-
arturo alonso
-
Christophe Flaviani
-
Lars Jørgensen
-
Nils Breunese (Lemonbit)