Skip to content

Instantly share code, notes, and snippets.

View billjohnston's full-sized avatar
🥳

Bill Johnston billjohnston

🥳
View GitHub Profile
@billjohnston
billjohnston / .htaccess
Last active December 10, 2015 03:58 — forked from anonymous/.htaccess
PHP: Simple permalinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
#If you want any directories ignored uncomment and edit line below
#RewriteRule ^(dash|admin)($|/) - [L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#If in sub directory, add before index.php (ex: admin/index.php)
RewriteRule . index.php [L]