Hi All
Need help to trace how the redirect is happening
We are using apache 2.2.15 webserver with some dynamic content coming from python. Apache is running in Unix environment.
Business team uses a URL to edit the product data. Business team uses this URL with in the network. If they try to use the same URL in the internet, It gets redirected to home page.
I would like to know where this redirect is happening. Here is my virtual host configuration.
WSGIProcessGroup web2py
WSGIScriptAlias / /opt/web-apps/web2py/wsgihandler.py
WSGIPassAuthorization On
<Directory /opt/web-apps/web2py>
AllowOverride None
Order Allow,Deny
Deny from all
<Files wsgihandler.py>
Allow from all
</Files>
</Directory>
AliasMatch ^/([^/]+)/static/(?:_[\d]+.[\d]+.[\d]+/)?(.*) \
/opt/web-apps/web2py/applications/$1/static/$2
<Directory /opt/web-apps/web2py/applications/*/static>
Options -Indexes
Order Allow,Deny
Allow from all
</Directory>
<Location /admin>
Deny from all
</Location>
<LocationMatch ^/([^/]+)/appadmin>
Deny from all
</LocationMatch>
CustomLog /var/log/httpd/access_log common
ErrorLog /var/log/httpd/error_log
Any help is appreciated.
Thanks and Regards
Naga