Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,10 @@ server {
rewrite ^/scraping/tutorial/introduction$ /academy/apify-scrapers/getting-started permanent;
rewrite ^/scraping/tutorial/web-scraper$ /academy/apify-scrapers/web-scraper permanent;

# apify-client-js restructuring
rewrite ^/api/client/js/docs/getting-started$ /api/client/js/docs/introduction/quick-start permanent;
rewrite ^/api/client/js/docs/examples$ /api/client/js/docs/guides/examples permanent;

# Articles moved from the platform documentation to the Academy
# Web Scraping 101
rewrite ^/platform/web-scraping-101$ /academy/web-scraping-for-beginners redirect;
Expand Down Expand Up @@ -634,7 +638,13 @@ server {

# Python docs

rewrite ^/api/client/python/docs$ /api/client/python/docs/overview/introduction permanent;
# apify-client-python restructuring

rewrite ^/api/client/python/docs/overview$ /api/client/python/docs permanent;
rewrite ^/api/client/python/docs/examples/passing-input-to-actor$ /api/client/python/docs/guides/passing-input-to-actor permanent;
rewrite ^/api/client/python/docs/examples/manage-tasks-for-reusable-input$ /api/client/python/docs/guides/manage-tasks-for-reusable-input permanent;
rewrite ^/api/client/python/docs/examples/retrieve-actor-data$ /api/client/python/docs/guides/retrieve-actor-data permanent;
rewrite ^/api/client/python/docs/examples/integration-with-data-libraries$ /api/client/python/docs/guides/integration-with-data-libraries permanent;

# API docs reorganization

Expand Down