ComboStrap URL Management - Log redirections History

Undraw Through The Park

About

This page shows you how you can query the redirection history table stored in the secondary database

Example

  • All redirections from the last 5 minutes:
select
  source, target, type, method
from
  redirections_log
where
  datetime(timestamp) > datetime('now','-5 minutes')
order by
  datetime(timestamp) desc;
  • Count of redirections by minutes
select
  strftime('%H:%M', timestamp),
  count(1)
from
  redirections_log
group by
  strftime('%H:%M', timestamp)




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...
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...
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



Task Runner