Answers for "how to use htaccess in html"

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

Browse Popular Code Answers by Language