codeant-ai-for-open-source[bot] commented on PR #37316:
URL: https://github.com/apache/superset/pull/37316#issuecomment-3781305821
## **Sequence Diagram**
This PR removes a catch‑all .htaccess redirect and updates redirects/links
so that requesting /docs/databases loads the databases overview page directly
instead of 301‑redirecting to a nonexistent path. The diagram shows the
simplified successful request flow after the fix.
```mermaid
sequenceDiagram
participant Browser
participant WebServer as "WebServer (.htaccess)"
participant DocsSite as "Docs (static site)"
Browser->>WebServer: GET /docs/databases
WebServer->>DocsSite: Request /docs/databases (no redirect)
DocsSite-->>WebServer: 200 OK (databases overview page)
WebServer-->>Browser: 200 OK (renders /docs/databases)
```
---
*Generated by [CodeAnt AI](https://codeant.ai)*
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]