mirror of
https://github.com/kennethreitz-archive/wordpress-skeleton.git
synced 2026-06-05 23:50:19 +00:00
11 lines
271 B
Plaintext
Executable File
11 lines
271 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>
|
|
|
|
php_value upload_max_filesize 250M
|
|
php_value post_max_size 250M
|
|
php_value memory_limit 170M |