Re: [users@httpd] Any Modules required for ErrorDocument?

2016-10-04 Thread Jayaram Ponnusamy
Hi Petr & Daniel, Initially I tried with ErrorDocument but it didn't help. So, I tried Redirect. We are using Java based CMS application. (Apache HTTP WebServer -> Tomcat Server -> CMS System-> DataBase). and VirualHost to connect Application Server (WeB & App on different Servers) I followed

Re: [users@httpd] problem compiling apache

2016-10-04 Thread Erik Dobák
if you upgraded ssl and in this state of situation you will have to upgrade httpd too. On 20 September 2016 at 21:07, Pavol Eisenberg wrote: > Hello > > After I've tried to upgrade my openssl 1.0.2 (ubuntu default) to Openssl > 1.1.0 I cannot compile apache with ssl

Re: [users@httpd] Any Modules required for ErrorDocument?

2016-10-04 Thread Daniel
Hello, Redirect takes at least 2 arguments, a request and a destination. This directive depends on mod_alias module. Eg: Redirect /something /otherthing This will redirect if someone requests /something /somethingblablabla to /otherthing or /otherthingblablabla ErrorDocument is a core

Re: [users@httpd] Any Modules required for ErrorDocument?

2016-10-04 Thread Petr Gajdos
Hello, On Tue, Oct 04, 2016 at 02:54:45PM +0300, Jayaram Ponnusamy wrote: > Redirect 404 /sites/en_US/404 > ErrorDocument 404 /sites/en_US/404 not sure what you want to achieve with Redirect directive, but an example how to use ErrorDocument directive is here:

[users@httpd] Any Modules required for ErrorDocument?

2016-10-04 Thread Jayaram Ponnusamy
Hi, I am new to Apache WebServer I tried lot with httpd.conf & virtualhost.conf but nothing is working for me. Kindly please help me on this. Still we are not able to redirect users to custom Error page by using ErrorDocument. Kindly please let me know if any other options we have? written the