JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Set php's max file upload size to 20MB
[wfpl-cms.git] / .htaccess
1 php_value post_max_size 25M
2 php_value upload_max_filesize 20M
3 php_flag register_globals off
4 php_flag magic_quotes_gpc off
5 Options -MultiViews
6 DirectorySlash Off
7 AddDefaultCharset UTF-8
8 RewriteEngine  on
9 RewriteRule    ^[^/.]*$  /run.php [L]
10 RewriteRule    ^style_[0-9]*.css$  /style.css [L]
11 RewriteRule    ^style_[0-9]*.less$  /style.less [L]
12
13 <FilesMatch "\.(css|jpg|png)$">
14         ExpiresActive On
15         ExpiresDefault A31536000
16 </FilesMatch>