This is an automated email from the ASF dual-hosted git repository. pkarwasz pushed a commit to branch asf-staging in repository https://gitbox.apache.org/repos/asf/logging-log4cxx-site.git
commit a830ffff15dafdae313e0a4d9cf93193d535f64c Author: Stephen Webb <[email protected]> AuthorDate: Tue Oct 15 15:14:11 2024 +1100 Avoid browser cache issues when the link uses 'latest_stable' --- .htaccess | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.htaccess b/.htaccess index 414528ef..ca6e0b6d 100644 --- a/.htaccess +++ b/.htaccess @@ -15,7 +15,7 @@ RewriteCond %{REQUEST_URI} !^/log4cxx/old_stable(?:/(?:.+)?)?$ RewriteRule ^(.*)$ /log4cxx/1.3.0/$1 [R=temp,L] - RewriteCond %{REQUEST_URI} ^/log4cxx/next_stable(?:/(?:.+)?)?$ - RewriteRule ^(.*)$ /log4cxx/1.3.0/$1 [R=temp,L] + RewriteCond %{REQUEST_URI} ^/log4cxx/latest_stable(.*)$ + RewriteRule ^(.*)$ /log4cxx/1.3.0%1 [R=temp,L] </IfModule>
