skip to Main Content

Reverse Proxy for Django App 404 Not Found – Apache

I am following this guide to try show this url www.mycompany.com/testblog instead of www.mycompany.com:8000/testblog These are my current config files setup inside my website.comssl.conf file <VirtualHost *:80> ServerAdmin webmaster@localhost ServerName website.com ServerAlias www.website.com DocumentRoot /var/www/website.com Redirect permanent / https://website.com/ ErrorLog…

VIEW QUESTION

Unable to set appropriate rewrite? – Apache

I want to block access via rewrite to IBM WebSphere WCM: /wps/wcm/webinterface/login/login.jsp And allow access to everything else under /wps/* Any ideas? I tried: RewriteCond %{REQUEST_URI} ^/wps/wcm/webinterface/login/login.jsp [OR,NC] RewriteCond %{REQUEST_URI} !^/wps.* RewriteRule ^/.* https://myhost.com/wps/portal [L,R=permanent]

VIEW QUESTION
Back To Top
Search