Skip to content

Instantly share code, notes, and snippets.

View Alexpeschel's full-sized avatar
🖤

Alex Peschel Alexpeschel

🖤
  • Project Joker
  • Hamburg, Germany
View GitHub Profile
@Alexpeschel
Alexpeschel / wordpress_.htaccess
Created October 4, 2014 18:45
Wordpress test Git
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>