This is an automated email from the ASF dual-hosted git repository.

rclabo pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/lucenenet-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 48bef43d6 website: Fix .htaccess /absolute-latest/ by removing BOM and 
update for beta00017 redirection
48bef43d6 is described below

commit 48bef43d6aeb4e89327262131948358ffce81f21
Author: rclabo <[email protected]>
AuthorDate: Wed Oct 30 15:53:49 2024 -0400

    website: Fix .htaccess /absolute-latest/ by removing BOM and update for 
beta00017 redirection
---
 .gitattributes | 2 +-
 .htaccess      | 7 +++++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/.gitattributes b/.gitattributes
index 7803b1f16..8999b4d3f 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1 +1 @@
-.htaccess text eol=lf
+.htaccess text eol=lf working-tree-encoding=UTF-8
diff --git a/.htaccess b/.htaccess
index 1fd96e7f9..578948c69 100644
--- a/.htaccess
+++ b/.htaccess
@@ -31,6 +31,9 @@
 # main website content into the API documentation always points to the 
appropriate
 # version, with [R=301] signaling permanent redirects and [L] preventing 
further
 # rule processing.
+#
+# Note: This file is line ending and BOM sensitive. It MUST use LF line 
endings and 
+# MUST NOT have a BOM.
 
 
 RewriteEngine On
@@ -38,5 +41,5 @@ RewriteEngine On
 # Redirect /docs/latest/ to /docs/3.0.3/
 RewriteRule ^docs/latest/(.*)$ /docs/3.0.3/$1 [R=301,L]
 
-# Redirect /docs/absolute-latest/ to /docs/4.8.0-beta00016/
-RewriteRule ^docs/absolute-latest/(.*)$ /docs/4.8.0-beta00016/$1 [R=301,L]
\ No newline at end of file
+# Redirect /docs/absolute-latest/ to /docs/4.8.0-beta00017/
+RewriteRule ^docs/absolute-latest/(.*)$ /docs/4.8.0-beta00017/$1 [R=301,L]
\ No newline at end of file

Reply via email to