Skip to content

Instantly share code, notes, and snippets.

View martinkariuki7's full-sized avatar
👨‍💻
Design + Code

Martin Kariuki martinkariuki7

👨‍💻
Design + Code
View GitHub Profile
@BFTrick
BFTrick / .htaccess
Created September 12, 2012 13:39
Default WordPress .htaccess File
# BEGIN 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>