kaxil opened a new pull request, #1439:
URL: https://github.com/apache/airflow-site/pull/1439

   ## Summary
   
   Follow-up to #1438. The `/registry` → `/registry/` redirect wasn't firing 
because `RewriteRule` patterns in `.htaccess` context match against the path 
**without** the leading slash. Apache passes `registry` to the pattern, not 
`/registry`, so `^/registry$` never matched.
   
   Fix: `^/registry$` → `^registry$`.
   
   (`RewriteCond %{REQUEST_URI}` is unaffected — it always receives the full 
path with the leading slash.)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to