Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
fix a redirect syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
ElliotFriend committed Jan 9, 2024
1 parent 6fc9be1 commit cb07d40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nginx/includes/redirects.conf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ rewrite "^/docs/reference/testnet$" "/docs/reference/networks" permanent;
rewrite "^/docs/reference/sdks/(rust|assemblyscript-sdk)$" "/docs/reference/sdks/write-contracts" permanent;
rewrite "^/docs/reference/sdks/(js|python|ios-sdk|flutter-sdk|php-sdk|elixir|java)$" "/docs/reference/sdks/interact-with-contracts" permanent;
rewrite "^/docs/fundamentals-and-concepts/(built-in-types|custom-types|fully-typed-contracts)$" "/docs/soroban-internals/types/$1" permanent;
rewrite "^/docs/fundamentals-and-concepts/invoking-contracts-with-transactions$" "/docs/soroban-internals/contract-interactions/stellar-transactions"
rewrite "^/docs/fundamentals-and-concepts/invoking-contracts-with-transactions$" "/docs/soroban-internals/contract-interactions/stellar-transactions" permanent;
rewrite "^/docs/fundamentals-and-concepts/interacting-with-contracts$" "/docs/soroban-internals/contract-interactions" permanent;
rewrite "^/docs/(basic|advanced)-tutorials/(.*)$" "/docs/tutorials/$1" permanent;
rewrite "^/docs/fundamentals-and-concepts/(.*)$" "/docs/soroban-internals/$1" permanent;
Expand Down

0 comments on commit cb07d40

Please sign in to comment.