Skip to content

Commit 12f27b8

Browse files
authored
fix: Add redirect from crawlee.dev/python/docs (#1364)
https://crawlee.dev/python/docs now leads to a 404 page, which is not optimal. This should fix that, in a manner consistent with the JS version of the docs
1 parent e06b8d4 commit 12f27b8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

nginx.conf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,4 +324,7 @@ server {
324324
}
325325
# Redirect rule for "upgrading-to-v03" to "upgrading-to-v0x"
326326
rewrite ^/python/docs/upgrading/upgrading-to-v03$ /python/docs/upgrading/upgrading-to-v0x permanent;
327+
328+
# Redirect rule so that /python/docs actually leads somewhere
329+
rewrite ^/python/docs/?$ /python/docs/quick-start;
327330
}

0 commit comments

Comments
 (0)