This commit is contained in:
2017-05-03 00:39:48 -07:00
parent 604a45c736
commit e838e2617f
76 changed files with 6085 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>