From 5d73f051ba9e421753bea276ddbff0b61af03fa0 Mon Sep 17 00:00:00 2001 From: Harald Bamberger Date: Tue, 3 Feb 2026 08:13:57 +0100 Subject: [PATCH] sample .htaccess to use with config option use_fhcomplete_build_version_in_path --- public/.htaccess_sample | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 public/.htaccess_sample diff --git a/public/.htaccess_sample b/public/.htaccess_sample new file mode 100644 index 000000000..e3f3485f6 --- /dev/null +++ b/public/.htaccess_sample @@ -0,0 +1,9 @@ + + RewriteEngine On + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteRule ^[0-9]{10}/(.*)$ $1 [L] + RewriteCond %{REQUEST_URI} ^(.*?)/public/index.ci.php/ + RewriteRule ^index.ci.php/(.*)$ %1/index.ci.php/$1 [R=303] + +