Skip to content

Instantly share code, notes, and snippets.

@EdoardoVignati
Created April 3, 2019 15:49
Show Gist options
  • Save EdoardoVignati/c6087d0e1b66fd3b9f94d3456cda828d to your computer and use it in GitHub Desktop.
Save EdoardoVignati/c6087d0e1b66fd3b9f94d3456cda828d to your computer and use it in GitHub Desktop.
Fix trailing slash Apache redirect
# Add this into your VirtualHost config file
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^/$ / [R]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment