Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When the requested Host: header is unknown ahead of time, we can use the following trick to build the target URL dynamically. Using Location instead of LocationMatch avoid the overhead of PCRE.

table-plus
Code Block
languagetext
<Location />
 

  Redirect permanent /
 
 "https://%{HTTP_HOST}/"

</Location>


Using .htaccess files and redirect

...