Laravel case insensitive routes

2019-02-17 04:58发布

How do I define a case insensitive (part of a) route?

Example:

Any use of uppercase in the fixed part of the route does not work:

I understand how I can make parameters like {parameter} use a regex pattern using ->with(), but that does not help me with the fixed part of the route, like described above.

3条回答
手持菜刀,她持情操
2楼-- · 2019-02-17 05:24

This can be solved by defining routes the following way:

Route::get('/{userId}/{profile}')->with('profile', '(?i)profile(?-i)');

Even smarter, define it as pattern, then it also becomes available in Route groups.

Route::pattern('profile', '(?i)profile(?-i)');
Route::get('/{userId}/{profile}');
查看更多
Luminary・发光体
3楼-- · 2019-02-17 05:33

For those using Apache you could also do this:

At this the top of your vhost file add

RewriteEngine On
RewriteMap lowercase int:tolower 

and in your .htaccess

RewriteCond $1 [A-Z]
RewriteRule ^(.*)$ /${lowercase:$1} [R=301,L]
查看更多
Juvenile、少年°
4楼-- · 2019-02-17 05:38

Adding patterns only works on one route at a time, if you want all routes to be case insensitive add this to your /app/filter.php file in the before section:

I wrote a gist which does this: https://gist.github.com/samthomson/f670f9735d200773e543

Edit your app/filters.php to check for uppercase characters in the route and redirect them to a converted route.

查看更多
登录 后发表回答