I have an apache server presently setup to redirect all http traffic to https. Problem is, I want to allow SOME http traffic through, but requests made to access / should route to https... I'm currently using:
Redirect permanent / https://server.com/ And this works well enough for accessing the site from the WAN, but it's preventing me from accessing phpmyadmin from the LAN... (It keeps redirecting me to https://server.com/ whenever I try the local IP.) I'm sure there's something to do with segregating internal traffic from external as to who gets redirected, but I'm not entirely sure where... Can anyone provide some insight?

