This is an automated email from the ASF dual-hosted git repository.
swebb2066 pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx-site.git
The following commit(s) were added to refs/heads/asf-staging by this push:
new f42160e8 Avoid browser cache issues when the link uses 'latest_stable'
f42160e8 is described below
commit f42160e8a8693d5f7e4de6d06a2f42b0b3fc8637
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>