You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Enable Routes
  6. |--------------------------------------------------------------------------
  7. |
  8. | Statamic adds its own routes to the front-end of your site. You are
  9. | free to disable this behavior.
  10. |
  11. | More info: https://statamic.dev/routing
  12. |
  13. */
  14. 'enabled' => true,
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Enable Route Bindings
  18. |--------------------------------------------------------------------------
  19. |
  20. | Whether route bindings for Statamic repositories (entry, taxonomy,
  21. | collections, etc) are enabled for front end routes. This may be
  22. | useful if you want to make your own custom routes with them.
  23. |
  24. */
  25. 'bindings' => false,
  26. /*
  27. |--------------------------------------------------------------------------
  28. | Action Route Prefix
  29. |--------------------------------------------------------------------------
  30. |
  31. | Some extensions may provide routes that go through the frontend of your
  32. | website. These URLs begin with the following prefix. We've chosen an
  33. | unobtrusive default but you are free to select whatever you want.
  34. |
  35. */
  36. 'action' => '!',
  37. /*
  38. |--------------------------------------------------------------------------
  39. | Middleware
  40. |--------------------------------------------------------------------------
  41. |
  42. | Define the middleware that will be applied to the web route group.
  43. |
  44. */
  45. 'middleware' => 'web',
  46. ];