I got problem set my own customized URL.. for example http://www.domain.com/customer.pl
If I set in file "apache2-httpd.include.conf" following code there is no problem show customer page http://www.domain.com/test/customer.pl
Code: Select all
# agent, admin and customer frontend
ScriptAlias /test/ "C:/OTRS/OTRS/bin/cgi-bin/"
Alias /otrs-web/ "C:/OTRS/OTRS/var/httpd/htdocs/"
# set mod_perl2 options
<Location /test/>
# ErrorDocument 403 /customer.pl
# ErrorDocument 403 /otrs/index.pl
SetHandler perl-script
PerlResponseHandler ModPerl::Registry
Options +ExecCGI
PerlOptions +ParseHeaders
PerlOptions +SetupEnv
Order allow,deny
Allow from all
</Location>
Code: Select all
# agent, admin and customer frontend
ScriptAlias / "C:/OTRS/OTRS/bin/cgi-bin/"
Alias /otrs-web/ "C:/OTRS/OTRS/var/httpd/htdocs/"
# set mod_perl2 options
<Location />
# ErrorDocument 403 /customer.pl
# ErrorDocument 403 /otrs/index.pl
SetHandler perl-script
PerlResponseHandler ModPerl::Registry
Options +ExecCGI
PerlOptions +ParseHeaders
PerlOptions +SetupEnv
Order allow,deny
Allow from all
</Location>
Could you please help me solve this issue?