Different Profile URL
Permalink
Hi everyone! I just started with C5 and all I can say is wow. It's a great product and has already helped me a lot. thank you ;)
Now what I wanted to do is to change the profile URLs from
/profile/x to /p/x
I've searched and read some threads about that (like this onehttp://www.concrete5.org/community/forums/customizing_c5/customizin... ) but I couldn't change the profile page path.
Any help would be greatly appreciated. Thanks.
Now what I wanted to do is to change the profile URLs from
/profile/x to /p/x
I've searched and read some threads about that (like this onehttp://www.concrete5.org/community/forums/customizing_c5/customizin... ) but I couldn't change the profile page path.
Any help would be greatly appreciated. Thanks.
I still can't see a way to do this. Nobody to help please?
I ended up adding a .htaccess rule:
Where the first 'p' represents the profile page url that you want:
In that example, what normally is /profile/user can be accessed through /p/user
RewriteRule ^p/(.*)$ profile/$1 [L]
Where the first 'p' represents the profile page url that you want:
In that example, what normally is /profile/user can be accessed through /p/user