mirror of
https://github.com/kennethreitz-archive/wordpress-skeleton.git
synced 2026-06-05 23:50:19 +00:00
8 lines
179 B
Plaintext
Executable File
8 lines
179 B
Plaintext
Executable File
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteBase /blog/
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule . /blog/index.php [L]
|
|
</IfModule>
|