Skip to content

Commit cee8756

Browse files
committed
default to case-insensitive
1 parent e55dae7 commit cee8756

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

config/redirection.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@
3333
|--------------------------------------------------------------------------
3434
|
3535
| Whether to match URLs case sensitively or not.
36+
| Default to false because most URLs are not case sensitive.
3637
|
3738
*/
38-
'case-sensitive' => (bool) env('REDIRECT_CASE_SENSITIVE', true),
39+
'case-sensitive' => (bool) env('REDIRECT_CASE_SENSITIVE', false),
3940

4041
/*
4142
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)