Multiple Slugs / Linking Pages

Feed 6 posts, 5 voices

Avatar
2 posts

In Frog CMS, is it possible to have multiple slugs per page? E.g. have “About-us”,“AboutUs”,“About” all point to the same page.

And somewhat related, is there also a way to easily create a “dummy” page to make a Subpage link that points to another page (a simple redirect)? I have a page that I want listed as a Subpage under two separate pages.

 
Avatar
22 posts

No, this fature now not supported. This maybe plugin like CostomMenuPlugin?…

 
Avatar
2 posts

Perhaps you could point me to this plugin? I wasn’t able to find a Custom/Costom Menu Plugin, or did you mean I’d have to write something myself?

 
Avatar
180 posts

I mean that you did write this plugin. In my plans write this plugin.

 
Avatar
58 posts

Just create hidden pages with layout setted to None and redirect this on page you need.
Write in ‘body’ part:

header('Location: /mypage/');
 
Avatar
16 posts

Instead of having multiple pages in the CMS just modify the .htaccess file to redirect to the good page.

 
Avatar
2 posts

@steven-b: That would work… somewhat, but users in the CMS wouldn’t be able to add multiple slugs and modifying the .htaccess would not solve the issue of having a page listed under multiple parents.

@ax: I’ll have to test that out. Thanks for the tip!