I have installed my SSL and set up redirects but now some links are breaking
Example I'm getting https://fraffel.techadmin/
instead of https://fraffel.tech/admin
. It's like the system is moving the forwardslash to the end, in the website files it is defined as https://fraffel.tech/admin
Any help extremely appreciated.
/
to the end of the target URL within the redirection directive:Redirect permanent "/" "https://example.com/"
. I've checked for examples within the Apache's documentation and also corrected my previous answer. – pa4080 May 03 '18 at 13:10