Skip to content

Instantly share code, notes, and snippets.

@vaporic
Last active February 7, 2016 14:05
Show Gist options
  • Save vaporic/0da3a75ed9ad0d7e40b3 to your computer and use it in GitHub Desktop.
Save vaporic/0da3a75ed9ad0d7e40b3 to your computer and use it in GitHub Desktop.
.htaccess wordpress
<IfModule mod_rewrite.c>
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