-
Notifications
You must be signed in to change notification settings - Fork 36
Fixed 404s #411
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed 404s #411
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -6,10 +6,18 @@ | |||||||||||||||||||||||||||||
| "source": "/quick-start", | ||||||||||||||||||||||||||||||
| "destination": "/introduction/quickstart" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/quickstart", | ||||||||||||||||||||||||||||||
| "destination": "/introduction/quickstart" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/sign-up-sign-in", | ||||||||||||||||||||||||||||||
| "destination": "/introduction/signup-signin" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/introduction/signup-signin", | ||||||||||||||||||||||||||||||
| "destination": "/introduction/home" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/docker-compose", | ||||||||||||||||||||||||||||||
| "destination": "/self-hosting/docker-compose" | ||||||||||||||||||||||||||||||
|
|
@@ -30,10 +38,18 @@ | |||||||||||||||||||||||||||||
| "source": "/workspaces", | ||||||||||||||||||||||||||||||
| "destination": "/core-concepts/workspaces" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/core-concepts/workspaces", | ||||||||||||||||||||||||||||||
| "destination": "/core-concepts/workspaces/overview" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
|
Comment on lines
38
to
+44
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Redirect chain detected. Adding this redirect creates a 2-hop chain: Consider updating the existing redirect to point directly to the final destination. 🔧 Proposed fix to flatten the redirect chain {
"source": "/workspaces",
- "destination": "/core-concepts/workspaces"
+ "destination": "/core-concepts/workspaces/overview"
},🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/projects", | ||||||||||||||||||||||||||||||
| "destination": "/core-concepts/projects" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/core-concepts/projects", | ||||||||||||||||||||||||||||||
| "destination": "/core-concepts/projects/overview" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
|
Comment on lines
46
to
+52
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Redirect chain detected. Same pattern as workspaces: Consider updating the existing redirect to point directly to the final destination. 🔧 Proposed fix to flatten the redirect chain {
"source": "/projects",
- "destination": "/core-concepts/projects"
+ "destination": "/core-concepts/projects/overview"
},📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/issues", | ||||||||||||||||||||||||||||||
| "destination": "/core-concepts/issues" | ||||||||||||||||||||||||||||||
|
|
@@ -66,6 +82,10 @@ | |||||||||||||||||||||||||||||
| "source": "/power-k", | ||||||||||||||||||||||||||||||
| "destination": "/core-concepts/power-k" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/integrations", | ||||||||||||||||||||||||||||||
| "destination": "/integrations/about" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/plane-integrations/about", | ||||||||||||||||||||||||||||||
| "destination": "/integrations/about" | ||||||||||||||||||||||||||||||
|
|
@@ -82,6 +102,10 @@ | |||||||||||||||||||||||||||||
| "source": "/importers/github-imp", | ||||||||||||||||||||||||||||||
| "destination": "/importers/github" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/importers/github", | ||||||||||||||||||||||||||||||
| "destination": "/importers/overview" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
|
Comment on lines
102
to
+108
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Check what importer documentation files exist
echo "=== Importer documentation files ==="
fd -e md . docs/importers 2>/dev/null || find docs/importers -name "*.md" 2>/dev/null
echo -e "\n=== Check for github-related importer files ==="
fd -i github -e md . docs 2>/dev/null || find docs -iname "*github*" -name "*.md" 2>/dev/nullRepository: makeplane/docs Length of output: 491 Redirect chain loses GitHub-specific documentation. The redirect chain Either remove the 🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/importers/jira-imp", | ||||||||||||||||||||||||||||||
| "destination": "/importers/jira" | ||||||||||||||||||||||||||||||
|
|
@@ -90,6 +114,10 @@ | |||||||||||||||||||||||||||||
| "source": "/webhooks/introduction", | ||||||||||||||||||||||||||||||
| "destination": "/webhooks/intro-webhooks" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/api", | ||||||||||||||||||||||||||||||
| "destination": "/api-reference/introduction" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/apis/introduction", | ||||||||||||||||||||||||||||||
| "destination": "/api-reference/introduction" | ||||||||||||||||||||||||||||||
|
|
@@ -204,7 +232,7 @@ | |||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/webhooks/:path*", | ||||||||||||||||||||||||||||||
| "destination": "https://developers.plane.so/webhooks/:path*" | ||||||||||||||||||||||||||||||
| "destination": "https://developers.plane.so/dev-tools/intro-webhooks/:path*" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
|
Comment on lines
233
to
236
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Test if the external webhook URLs are accessible
echo "Testing external webhook redirect destinations..."
# Test base intro-webhooks page
curl -sI "https://developers.plane.so/dev-tools/intro-webhooks" | head -5
# Test a potential subpath
curl -sI "https://developers.plane.so/dev-tools/intro-webhooks/test" | head -5Repository: makeplane/docs Length of output: 364 Remove the The external URL Change the destination to 🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/plane-one/governance/workspaces-and-teams", | ||||||||||||||||||||||||||||||
|
|
@@ -231,7 +259,7 @@ | |||||||||||||||||||||||||||||
| "destination": "/importers/jira" | ||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||
| "source": "/performance/hyper-mode#use-hyper-mode", | ||||||||||||||||||||||||||||||
| "source": "/performance/hyper-mode", | ||||||||||||||||||||||||||||||
| "destination": "/" | ||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||
| ] | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Redirect chain detected.
Adding this redirect creates a 3-hop chain:
/sign-up-sign-in→/introduction/signup-signin→/introduction/home→/Multi-hop redirects degrade performance and SEO. Consider updating the existing redirect on lines 14-15 to point directly to the final destination.
🔧 Proposed fix to flatten the redirect chain
{ "source": "/sign-up-sign-in", - "destination": "/introduction/signup-signin" + "destination": "/" }, { "source": "/introduction/signup-signin", - "destination": "/introduction/home" + "destination": "/" },🤖 Prompt for AI Agents