How do you redirect Domain?

Do I do it correctly already? It's still not redirecting when I go to https://finbud.com
No description
18 Replies
Laudian
Laudian2w ago
Before anything else, you need to create a proxied DNS record for the domain that you want to redirect, ie. Type: AAAA Name: @ and Value: 100:: After that, your expression needs some fixing as well.
Grady
GradyOP2w ago
DNS record in my .com right? Can u advice the expression?
Laudian
Laudian2w ago
Do you just want to forward all requests? I'd use the All incoming Requests optin with this as a dynamic Target URL: concat("https://example.com",http.request.uri.path) Just replace example.com
Grady
GradyOP2w ago
Yes But how about the http request? Ok will try it Thanks much @Laudian wildcard_replace(http.request.full_uri, r"https://*.finbud.com/* ", r"https://finbud.ai/${1}") works? I did this and this
Laudian
Laudian2w ago
This doesn't make any sense. Are you trying to redirect whatever.finbud.com/something to finbud.ai/whatever? concat("https://finbud.ai",http.request.uri.path) Did you try this?
Grady
GradyOP2w ago
yeah, i'm using this now https://finbud.com/ still not redirecting
Laudian
Laudian2w ago
can you show a screenshot? of the redirect rule
Grady
GradyOP2w ago
No description
Laudian
Laudian2w ago
you are redirecting to .com
Grady
GradyOP2w ago
ahhh AH WORKS thank you so much https://www.finbud.com/ -> this doesn't work tho do i create a new rule?
Laudian
Laudian2w ago
You don't have a DNS record for www Creater another AAAA record, but with www as the name
Grady
GradyOP2w ago
like this right?
No description
Laudian
Laudian2w ago
yes
Grady
GradyOP2w ago
2nd one is @ http://www.finbud.com/ ? i guess need to wait a bit for the DNS to propagates? let's see
Laudian
Laudian2w ago
You have other DNS records for the name www that aren't on your screenshot www.finbud.com. 300 IN NS ns1.namebrightdns.com. www.finbud.com. 300 IN NS ns2.namebrightdns.com. ;; Received 93 bytes from 2a06:98c1:50::ac40:21ec#53(terin.ns.cloudflare.com) in 4 ms
Grady
GradyOP2w ago
ah okay i just removed all of them
Laudian
Laudian2w ago
looks good now
Grady
GradyOP2w ago
that works thank you so much for your help @Laudian YOU ARE THE BEST 5 STAR RATING! ⭐

Did you find this page helpful?