From f7139cf402a7d22449d44ad5785e46abbd33ef23 Mon Sep 17 00:00:00 2001 From: Douglas Barone Date: Tue, 3 Sep 2024 10:21:42 -0400 Subject: [PATCH] chore: Update .htaccess with PHP configuration directives --- src/.htaccess | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/.htaccess b/src/.htaccess index 7d58e86..23d62c8 100644 --- a/src/.htaccess +++ b/src/.htaccess @@ -3,4 +3,8 @@ RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond $1 !^(index\.php|assets|images|robots\.txt) -RewriteRule ^(.*)$ index.php?/$1 [L] \ No newline at end of file +RewriteRule ^(.*)$ index.php?/$1 [L] + +php_flag short_open_tag off +php_value post_max_size 50M +php_value upload_max_filesize 50M \ No newline at end of file