1 June
2022
.htaccess Cheat Sheet
Quick tips for common .htaccess rules.
No lengthy descriptions, just a bunch of handy code snippets.
1 2 3 4 |
<IfModule mod_rewrite.c |
Quick tips for common .htaccess rules.
No lengthy descriptions, just a bunch of handy code snippets.
1 2 3 4 |
<IfModule mod_rewrite.c |
Apache mod_macro can be used to simplify Apache configurations on servers with large number of identically configured VirtualHosts.
Create your macro configuration. In this example we create two macros, one for http & one for https. You should only enable one of these, and if https is enabled http is automatically redirected to https.… Continue reading “Using Apache mod_macro”