Project

Contents

Issue #00005541

Added redirect configuration to OpenWGA and admin client
Feature/Improvement

Until now redirects had to be handled by http servers like apache. This not always is easy and practical.

OpenWGA now supports redirects as part of the cms system. Redirects can be configured in the V-Host section in admin client. Regular expressions are supported.

Samples:

path expression:
^/products$

redirection:
/home/products

Redirects a request /products to /home/products.

Variables addressed as $n (n=1 to 9) are supported as well:

path expression:
^/(de|en|fr)/?$

redirection:
/home.$1.html

Redirects "/de" to "/home.de.html" and "/en" to "/home.en.html".