Answers for "file .htaccess"

3

.htaccess

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
Posted by: Guest on November-02-2020
0

.htaccess

##Add a Trailing slash
# FROM:  http://was-mit-internet.de/unterseite/filename.html
# TO: http://was-mit-internet.de/unterseite
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ https://www.domainname.tld/$1/ [L,R=301]
Posted by: Guest on June-28-2020
0

.htaccess

<IfModule mod_php5.c>
php_value max_execution_time 300
</IfModule>
Posted by: Guest on June-06-2021
0

.htaccess

#Supress php errors
php_flag display_errors Off
Posted by: Guest on June-28-2020

Browse Popular Code Answers by Language