X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl-cms.git;a=blobdiff_plain;f=.htaccess;h=3847e70629da989ae165b81e032a44a0b4d5928a;hp=69c86419d05e10a0a22c2e0a80447be2accd1722;hb=0a5d51b1488c91a5b6387d440ab16c04ef10bac8;hpb=23e93d1d63fc861743101a07f3855afb886c0f93 diff --git a/.htaccess b/.htaccess index 69c8641..3847e70 100644 --- a/.htaccess +++ b/.htaccess @@ -1,16 +1,30 @@ -# php_value post_max_size 205M -# php_value upload_max_filesize 200M +php_value post_max_size 25M +php_value upload_max_filesize 20M php_flag register_globals off php_flag magic_quotes_gpc off -Options -MultiViews DirectorySlash Off +DirectoryIndex disabled AddDefaultCharset UTF-8 +AddCharset UTF-8 .css RewriteEngine on -RewriteRule ^[^/.]*$ /run.php [L] -RewriteRule ^style_[0-9]*.css$ /style.css [L] -RewriteRule ^style_[0-9]*.less$ /style.less [L] +RewriteRule ^[^/.]*$ /wfpl_main.php [L] ExpiresActive On ExpiresDefault A31536000 + +# SECURITY: don't execute code on the server (exception below) +SetHandler none +SetHandler default-handler +# this option is needed for RewriteRule to work: +Options SymlinksIfOwnerMatch +php_flag engine off +RemoveHandler .cgi .php .php3 .php4 .php5 .phtml .pl .py .pyc .pyo +# code execution exception: allow only /wfpl_main.php +# matches regardless of directory/path, so rewrite php in subdirs +RewriteRule ^.*/.*\.php$ - [L,R=404] + + php_flag engine on + SetHandler application/x-httpd-php +