Forum Discussion
El-Guapo_29797
Nimbostratus
Aug 31, 2013*Redirect http to https and remove www from URL*
Following iRule, removes www from URL. But, can we also redirect http to https at same time with same iRule?
if {[string tolower [HTTP::host]] starts_with "www."} {
HTTP::redirect "http://[str...
nitass
Employee
Aug 31, 2013can same iRule be used to modify any http site (not specific) such as http://xyz.com to https://xyz.com.
e.g.
[root@ve11a:Active:Changes Pending] config tmsh list ltm virtual bar
ltm virtual bar {
destination 172.28.20.111:80
ip-protocol tcp
mask 255.255.255.255
profiles {
http { }
tcp { }
}
rules {
myrule
}
source 0.0.0.0/0
source-address-translation {
type automap
}
vs-index 28
}
[root@ve11a:Active:Changes Pending] config tmsh list ltm rule myrule
ltm rule myrule {
when HTTP_REQUEST {
HTTP::redirect "https://[string map {"www." ""} [HTTP::host]][HTTP::uri]"
}
}
[root@ve11a:Active:Changes Pending] config curl -I http://172.28.20.111/something -H "Host: www.xyz.com"
HTTP/1.0 302 Found
Location: https://xyz.com/something
Server: BigIP
Connection: Keep-Alive
Content-Length: 0
[root@ve11a:Active:Changes Pending] config curl -I http://172.28.20.111/something -H "Host: xyz.com"
HTTP/1.0 302 Found
Location: https://xyz.com/something
Server: BigIP
Connection: Keep-Alive
Content-Length: 0
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects