in reply to Re^2: httpd.conf configuration with mod_perl
in thread httpd.conf configuration with mod_perl
Authenticate is meant to redirect to /Home with the following code:<Location ~ /StockControl/Inventory$> SetHandler perl-script PerlAccessHandler XTracker::Authenticate PerlResponseHandler XTracker::Stock::Inventory::SearchForm </Location>
This doesn't seem to be working at all - the redirect is being completely ignored, an error message is passed to the browser but then the browser displays the rest of the page as if an OK had been passed.$r->headers_out->set( Location => "/Home" ); return REDIRECT;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: httpd.conf configuration with mod_perl
by perrin (Chancellor) on Nov 12, 2007 at 18:22 UTC | |
by dariusj (Sexton) on Nov 13, 2007 at 13:02 UTC |