How do I change the URL Alias for Security/login in SilverStripe to user/login
Posted
by
pthurmond
on Stack Overflow
See other posts from Stack Overflow
or by pthurmond
Published on 2013-11-08T16:24:21Z
Indexed on
2013/11/09
3:55 UTC
Read the original article
Hit count: 216
I am working on a new website being built in SilverStripe. Currently I am having a ton of trouble trying to get the system to let me change the URL alias (or create a second one) for the Security controller's login (and eventually logout) function.
I have tried playing around with the routes.yml file and I tried creating the paths in my own UserController and loading directly from the Security controller with "return Security::login()". But that gives me errors about the use of the static functions.
Unfortunately I don't come from a ton of object oriented experience and this is the first CMS I have used that actually uses a bunch of true object orientation. The current version of SilverStripe we are using is 3.0 (but we will be upgrading to 3.1.1 in a few days).
Does anyone know much about the routing in SilverStripe?
© Stack Overflow or respective owner