Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: 403 Access Forbidden |
|
Author |
|
chakymist
Joined: 09 May 2016 Posts: 1 Location: United States
|
Posted: Mon 09 May '16 20:39 Post subject: 403 Access Forbidden |
|
|
Hi,
Can someone please help with "Access Forbidden" error. I'm using Apache 2.4 webserver on a windows 2008.
The context is /portal/console. httpd.conf contains all permissions allowed. Most of the URLs that start with /portal/console works fine, but some URLs that contain querystring including an ampersand throws 403 access forbidden error.
<Directory />
AllowOverride none
Require all granted
Allow from all
</Directory>
<Directory /portal/*>
#Options FollowSymLinks
Options Indexes FollowSymLinks MultiViews Includes ExecCGI
SetHandler server-status
AllowOverride None
Order deny,allow
Allow from all
Require all granted
</Directory>
<Directory /portal/console>
Options Indexes FollowSymLinks MultiViews Includes ExecCGI
SetHandler server-status
Require all granted
</Directory>
<Directory /portal/console/c_id.vgn_system_component/d_id.d_trail_frame/>
Options Indexes FollowSymLinks MultiViews Includes ExecCGI
SetHandler server-status
Require all granted
</Directory>
For example,
http://<server_name>:85/portal/console/c_id.vgn_system_component/d_id.d_trail_frame/?.vgn-admin-sync-token=7c32e0d93ad9cb690a4538612ad8c22a&_cid=c_server_console_default&_did=d_welcome
If I remove the querystring, then the page is partially working (well, at least there is no 403 error.
Thanks for any help.
Chakymist |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Tue 10 May '16 9:56 Post subject: |
|
|
You can not mix the old auth config with the new config style
remove
Code: |
Order deny,allow
Allow from all
|
|
|
Back to top |
|
|
|
|
|
|