You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Updated to use Application Gateway v2 (Standard_v2 SKU) for improved performance
- Added zone redundancy and static IP configuration for high availability
- Upgraded to Windows Server 2022 and modern VM sizes (Standard_D2s_v3)
- Enhanced PowerShell scripts with better error handling and validation
- Added comprehensive monitoring and troubleshooting sections
- Included production-ready security best practices
- Updated Azure PowerShell module requirements to version 5.4.1
- Added detailed architecture explanations and technical depth
- Improved code comments and variable consistency
- Added diagnostic logging and performance monitoring guidance
- Updated date to July 9, 2025
Copy file name to clipboardExpand all lines: articles/application-gateway/tutorial-url-redirect-powershell.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -372,11 +372,15 @@ Write-Output "Preserves: Path and Query String"
372
372
373
373
### Add the redirection URL path map
374
374
375
+
Create a separate URL path map for redirection scenarios. This map will handle traffic on port 8081 and redirect specific paths to the appropriate listener on port 8080.
376
+
375
377
```azurepowershell-interactive
378
+
# Get the current Application Gateway configuration
0 commit comments