This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| Exposes a specific local XAMPP project directory to the internet via Cloudflare Tunnel using a full URL. | |
| #> | |
| # Prompt the user for the full local URL | |
| $InputUrl = Read-Host "Please enter the full local URL (e.g., http://localhost/dev/proje/)" | |
| # Clean the input and ensure it has a proper HTTP scheme | |
| $InputUrl = $InputUrl.Trim() |