Laravel case insensitive routes

后端 未结 3 1167
遥遥无期
遥遥无期 2021-01-12 16:28

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

Example:

  • Route::get(\'/{userId}/profile\');
  • http://domain.com/123/profi
3条回答
  •  无人及你
    2021-01-12 16:34

    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]
    

提交回复
热议问题