30X Redirects Made with ❤️ by dexter0us

This tool provides various ways to create HTTP redirects. Below are the supported methods and examples:

Disclaimer: This service is provided as open-source software, and its use is at your own risk. The author (Dexter0us) is not responsible for any misuse, including but not limited to malicious redirection or unauthorized access. The usage and operation of this service are beyond the author's control. The author disclaims any liability for damages, data loss, or security breaches resulting from its use.

Path Segments

Format: /[STATUS_CODE]/[TARGET_URL]

https://30x.dexter0us.com/302/https://example.com

Query Parameters

Format: ?code=[STATUS_CODE]&target=[TARGET_URL]

https://30x.dexter0us.com/?code=301&target=https://example.com

Base64 Encoded Target

Format: ?code=[STATUS_CODE]&target=[BASE64_ENCODED_URL]

https://30x.dexter0us.com/?code=307&target=aHR0cHM6Ly9leGFtcGxlLmNvbQ==

Additional Usage Examples

Mixed Usage (Path for Code, Query for Target)

https://30x.dexter0us.com/303/?target=https://example.com

Using Base64 Without Protocol

https://30x.dexter0us.com/?code=308&target=ZXhhbXBsZS5jb20=

Note: If no protocol is specified, http:// will be added automatically.

Path Segments with Subdirectories

https://30x.dexter0us.com/301/https://example.com/path/to/page

Using Other Protocols

https://30x.dexter0us.com/302/sftp://sftp.example.com
https://30x.dexter0us.com/307/file:///C:/example.txt
https://30x.dexter0us.com/302/gopher://gopher.example.com

Supported Status Codes

  • 301 - Moved Permanently
  • 302 - Found
  • 303 - See Other
  • 307 - Temporary Redirect
  • 308 - Permanent Redirect

Important Notes

  • Various protocols are supported, including http, https, sftp, file, gopher, etc.
  • If no protocol is specified in the target URL, http:// will be automatically prepended.
  • Invalid requests will return a 400 Bad Request response.
  • For security reasons, always ensure you're redirecting to trusted URLs.
  • Some protocols may be blocked by browsers even if allowed by this service.
  • The actual behavior of the redirect may depend on the client's support for different protocols.