ComboStrap URL - Page Alias

Undraw Through The Park

About

A page alias is an extra path value for a page.

If a page has an alias that corresponds to the path of a missing page, a redirection is performed.

You can see them as symlink or shortcut for a file system.

With the permanent page url, this feature is in a deprecation state.

Why?

Because when moving heavily the files, you end up with a lot of aliases and it becomes really difficult to manage them. The introduction of the permanent page url permits moving the file easily from location without this burden because it's identified by the unique page id

Type

Redirect

A redirect alias is an alias that will perform a permanent redirection.

This type of redirect are automatically created:

For instance:

  • if you have a page at the path fruit:pear.
  • if you move the page to another location such as fruit:tree:pear
  • the page fruit:tree:pear will get the alias fruit:pear with the type redirect

Synonym

A synonym alias is an alias that will perform a transparent redirection. The page will be served normally as if it was also existing to the synonym path.

Management

You can create, delete and see the aliases for a page with the metadata manager.

Database

You can query the aliases with the following statements:

select * from page_aliases_vw;
select
  p.path as page_path,
  pa.path as alias_path,
  pa.type as alias_type
from
   page_aliases pa
   inner join pages p on pa.UUID = p.UUID;




Showcase yourself and your brand

Get free news, tips, and tricks
to create a remarkable experience for your readers.




Recommended Pages
Undraw My Documents
ComboStrap Analytics - Database

All ComboStrap data are stored in a Sqlite Database that you can query online The database schema has the following tables: pages - data on pages: page_id: the page id canonical: the canonical...
Best End Page Name Configuration
ComboStrap URL Management - Best End Page Name Scoring

The Best End Page Name is a redirection scoring algorithm that finds the best page to redirect to when a non-existing page is requested. This algorithm performs the scoring by looping through the different...
Undraw Through The Park
ComboStrap URL Management - Redirection

A redirection occurs when a missing/non-existing page is requested. The processing and the type of redirections executed are explained below. ComboStrap performs four kind of redirection: a transparent...
Undraw Through The Park
ComboStrap Routing - Transparent Redirect

A transparent redirect is a redirection that shows the content of another page transparently (A visitor or a search engine bot will not see the redirection). It happens when the requested URL matches:...
Redirection Actions
ComboStrap URL Management - Redirection Actions

The redirection actions takes place in the redirection processing when: the missing page: is not a canonical is not a alias does not have any page rules that applies for redirection the user...
Page Explorer List Name To Ui Region
Page-explorer: adding page navigation easily to your website

With the page-explorer component, you can add an explorer like panel that will list your pages in a list or collapsible tree fashion
Undraw Through The Park
What are permanent redirects ?

This articles explains you what a permanent redirect is and when they are executed
Undraw Through The Park
What is a missing page (404) and how ComboStap solve them

This article is about missing page that are asked due to broken link and how combostrap solve them.



Task Runner