Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2015
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. php_value upload_max_filesize 4M
  2.  
  3. RewriteEngine On
  4. RewriteBase /
  5. RewriteRule ^index\.php$ - [L]
  6.  
  7. # uploaded files
  8. RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
  9.  
  10. RewriteCond %{REQUEST_FILENAME} -f [OR]
  11. RewriteCond %{REQUEST_FILENAME} -d
  12. RewriteRule ^ - [L]
  13. RewriteRule . index.php [L]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement