DTux
/
dtux__avion-poeme
Archived
1
0
Fork 0

feat: add htacces to redirect php file

This commit is contained in:
mberard 2021-11-24 22:57:51 +01:00
parent 876a925f79
commit a5a934a108
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
RewriteEngine On
# browser requests PHP
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^\ ]+)\.php
RewriteRule ^/?(.*)\.php$ /$1 [L,R=301]
# check to see if the request is for a PHP file:
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^/?(.*)$ /$1.php [L]