1
0
mirror of https://github.com/Rouji/single_php_filehost.git synced 2025-04-05 00:49:33 +00:00

Add example .htaccess file

This commit is contained in:
Sandro Santilli 2022-08-22 11:51:17 +02:00
parent 1326c8cbc3
commit a64030d3a7

9
example.htaccess Normal file
View File

@ -0,0 +1,9 @@
php_value upload_max_filesize 512
php_value post_max_size 512
php_value max_input_time 300
php_value max_execution_time 300
RewriteEngine On
RewriteCond "%{ENV:REDIRECT_STATUS}" "^$"
RewriteRule "^/?$" "index.php" [L,END]
RewriteRule "^(.+)$" "files/$1" [L,END]