Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. controllers:
  2. resource: ../../src/Controller/
  3. type: annotation
  4. prefix:
  5. en: '/en'
  6. th: '/th'
  7.  
  8. homepage_fallback:
  9. path: /
  10. controller: Symfony\Bundle\FrameworkBundle\Controller\RedirectController::urlRedirectAction
  11. defaults:
  12. path: /en/
  13. permanent: true
  14.  
  15.  
  16. aboutpage_fallback:
  17. path: /about
  18. controller: Symfony\Bundle\FrameworkBundle\Controller\RedirectController::urlRedirectAction
  19. defaults:
  20. path: /en/about
  21. permanent: true
  22.  
  23.  
  24. lawspage_fallback:
  25. path: /laws
  26. controller: Symfony\Bundle\FrameworkBundle\Controller\RedirectController::urlRedirectAction
  27. defaults:
  28. path: /en/laws
  29. permanent: true
  30.  
  31.  
  32.  
  33. propertypage_fallback:
  34. path: /property/{id}
  35. controller: Symfony\Bundle\FrameworkBundle\Controller\RedirectController::urlRedirectAction
  36. defaults:
  37. path: /en/property/{id}
  38. permanent: true
  39.  
  40. .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement