Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Cellophile
PersonaLink
Commits
1f08cc90
Commit
1f08cc90
authored
May 23, 2021
by
Cellophile
🎨
Browse files
Replace .htaccess
parent
f7031f9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
.htaccess
View file @
1f08cc90
RewriteEngine
on
## www -> no www
RewriteCond
%{HTTP_HOST} ^www\.(.+)$
RewriteRule
^ https://%1%{REQUEST_URI} [R=301,L,NE,QSA]
## http -> https
RewriteCond
%{HTTPS}
off
RewriteRule
^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE,QSA]
...
...
@@ -11,6 +15,10 @@ RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]
RewriteCond
%{THE_REQUEST} ^GET.*cron\.php [NC]
RewriteRule
(.*?)cron\.php/*(.*) /$1$2 [R=301,NE,L]
## Interdire l'accès au fichier urlperso.csv
RewriteCond
%{THE_REQUEST} ^GET.*urlperso\.csv [NC]
RewriteRule
(.*?)urlperso\.csv/*(.*) /$1$2 [R=301,NE,L]
## Personnaliser les pages d'erreur
ErrorDocument
400 /index.php?echec=404
ErrorDocument
404 /index.php?echec=404
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment