This is an automated email from the ASF dual-hosted git repository. dixitdeepak pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ofbiz-site.git
commit 1d91dec851c7caf2776b7ef68852bce33492635a Author: Deepak Dixit <[email protected]> AuthorDate: Mon Jul 6 10:05:07 2026 +0530 Aded redirect rule to redirect old release notes pages to new pages --- .htaccess | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.htaccess b/.htaccess index 78538be..a0bf4d6 100644 --- a/.htaccess +++ b/.htaccess @@ -6,4 +6,5 @@ RewriteCond %{REQUEST_URI} !^/dtds/(.*)$ RewriteRule ^\/?(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] RewriteRule ^documentation.html /index.html [R=301,NC,L] -RewriteRule ^community.html /getting-involved.html [R=301,NC,L] +RewriteRule ^community.html /getting-involved.html [R=301,NC,L] +RewriteRule ^release-notes-([0-9]+\.[0-9]+\.[0-9]+)\.html$ /release-notes/$1.html [R=301,NC,L]

