Author
|
zPlus <->
2017-04-01 19:36:59
|
Committer
|
zPlus <->
2017-04-01 19:36:59
|
Commit
|
0858910
(patch)
|
Tree
|
1d62365
|
Parent(s)
|
|
.htaccess.prod: Fix rule to remove trailing slashes
commits diff:
84048a7..0858910
1 file changed,
1 insertion,
1 deletion
—
download
Diffstat
Diff options
+1/-1
M .htaccess.prod
13
|
13
|
|
RewriteRule ^(.*)$ https://freepo.st/$1 [R=301]
|
14
|
14
|
|
|
15
|
15
|
|
# Remove trailing slashes
|
16
|
|
- |
RewriteRule (.*)/+$ https://freepo.st/$1 [NC,R=301,QSA]
|
|
16
|
+ |
# RewriteRule (.*)/+$ https://freepo.st/$1 [NC,L,R=301,QSA]
|
17
|
17
|
|
|
18
|
18
|
|
# Rewrite for public assets
|
19
|
19
|
|
RewriteRule .+/css/(.+)$ css/$1 [NC,L,QSA]
|