Reputation: 153
Does anyone know the suitable or recommended way to make whatsapp redirect link like wa.me/PhoneNumber .. is it using javascript redirect to the link? or just use URL redirect using custom domain and then redirect to wa.me/phoneNumber
the use case is when user click the link (custom domain), it will open whatsapp and having conversation with us..
Upvotes: 0
Views: 2908
Reputation: 6426
The correct HTTP redirect is a 303 See Other
, which is a HTTP/1.1 code. This is because your URI represents a description of your Whatsapp contact information, and the URL you're redirecting to is the actual location of that information.
Upvotes: 1