URL - URL Rewrite

About

url rewrite is the rewrite of the URL based on condition (generally via a regular-expression parser) to reroute requested URLs on the fly.

The URL manipulations/matching can depend on various tests of:

  • server variables,
  • environment variables,
  • HTTP headers,
  • time stamps,
  • and even external database lookups.

Example

  • Canonical URL rewriting
# URL in the browser
http://example.com/article/article_id
# URL after rewrite
http://example.com/a/index.php?id=article_id





Discover More
Card Puncher Data Processing
Apache - URL Rewrite (mod_rewrite)

URL rewrite in Apache is done through the rewrite module. The rules are set in the htaccess file This module operates on the full URLs (including the path-info part) both: in per-server context (httpd.conf)...
Devtool Tracking Cookie Identifier Counter
How does a tracking cookie work? A step by step example

This page shows you a basic example of a tracking ... cookie so that you can understand and implement the underlying mechanisms. These cookies are third-party cookie. A tracking cookie is also known...
React - Deployment - Routing for client side router

With client side router, a direct HTTP call will failed if you are not using some routing features (such as ) For a create-react-app React application, all URL must be redirected to the index.html...
Web - URL

An Uniform Resource Locator (URL) is a universal identifier for a resource. Because the resource can be created dynamically, an URL is also logically a request. It's the string that is understood by...
Web HTTP - Cache Bursting (Content fingerprinting)

A cache-buster makes the URL unique each time the content is new and the content will therefore not be in the cache. Because the cache key of the resources contains the URI, the HTTP cache mechanism...
Chrome Cookie Configuration
What is a Third-party (3P) Cookie and how it works?

Third party Cookies are cookies created by other sites (ie that comes from another domain (ie a third party) than the hosted web page. These sites own some of the content, like ads or images, that you...



Share this page:
Follow us:
Task Runner