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 - Sqlite Database

ComboStrap Analytics - Sqlite 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:...
Undraw Through The Park
ComboStrap Routing - Redirection

ComboStrap Routing - 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...
Undraw Through The Park
What are permanent redirects ?

This articles explains you what a permanent redirect is and when they are executed



Task Runner