Skip to content

Instantly share code, notes, and snippets.

@metelidrissi
Created December 8, 2020 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save metelidrissi/b65f9cc56f384625aa7203b4022babbb to your computer and use it in GitHub Desktop.
Save metelidrissi/b65f9cc56f384625aa7203b4022babbb to your computer and use it in GitHub Desktop.
<IfModule mod_rewrite.c>
# Redirect SSL
RewriteEngine on
RewriteCond %{QUERY_STRING} !^wc-api=WC_Gateway_(.*)redsys
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
# End Redirect SSL
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment