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
3dde6bb2
Commit
3dde6bb2
authored
May 21, 2021
by
Cellophile
🎨
Browse files
Replace .htaccess
parent
9cab438f
Changes
1
Hide whitespace changes
Inline
Side-by-side
.htaccess
View file @
3dde6bb2
...
...
@@ -3,7 +3,15 @@ RewriteEngine on
RewriteCond
%{HTTPS}
off
RewriteRule
^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE,QSA]
## enlever le index.php
RewriteCond
%{THE_REQUEST} ^GET.*index\.php [NC]
RewriteRule
(.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]
## enlever le cron.php
RewriteCond
%{THE_REQUEST} ^GET.*cron\.php [NC]
RewriteRule
(.*?)cron\.php/*(.*) /$1$2 [R=301,NE,L]
## Personnaliser les pages d'erreur
ErrorDocument
400 /index.php?echec=404
ErrorDocument
404 /index.php?echec=404
# CUSTOM ERROR PAGES
ErrorDocument
400 /index.php?echec=404
ErrorDocument
404 /index.php?echec=404
Write
Preview
Supports
Markdown
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