Last active 8 hours ago

Redirects outdated locale slug for knowledge bases from 'es-ca' to 'ca' for improved usability and very easy switching. As shown in the Zammad 7.0 Release video: https://www.youtube.com/watch?v=unwYUx5--7M

apache2-catalan-redirect.conf Raw
1# Default /help URL (replace help with your custom alias if needed; NOT for custom domains)
2RewriteEngine On
3RewriteRule ^help/es-ca(/.*)?$ /help/ca$1 [R=301]
4
5# for custom URLs
6RewriteEngine On
7RewriteRule ^es-ca(/.*)?$ /ca$1 [R=301]
nginx-catalan-redirect.conf Raw
1# Default /help URL (replace help with your custom alias if needed; NOT for custom domains)
2rewrite ^/help/es-ca/(.*)$ /help/ca/$1 permanent;
3
4# for custom URLs
5rewrite ^/es-ca/(.*)$ /ca/$1 permanent;