- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
11-06-2020 08:28 AM
HI Team,
Is it possible to redirect the traffic from HTTPS to HTTP.
As my webserver is using HTTP. We outside user connect it's https://abc.com it's should be redirect to http://abc.com.
Please advice
11-06-2020 10:10 AM
Hi there.
This is done by the web server and NOT by the PANW FW.
There are multiple google search results for how to do this.
I did a quick search and here is what I found. Note that this is not a FW function, but your own web developer to make this change in their code.
o redirect your website from HTTPS to HTTP, add the following rule in your website’s .htaccess file:
# Redirect HTTPS to HTTP
RewriteCond %{HTTP:X-Forwarded-Proto} =https
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!