http - Server side redirect vs Javascript redirect in terms of SEO -
I am making my own short URL website 9o9.in A visitor to a small URL Generates by my site, it will essentially hit your server first but I know that there may be many links to potentially harmful or inappropriate sites which will be reduced by using the service of my site. To make sure that I am not setting the negative reputation of my site, referring to SEO, links to the eyes of the search engines, or the sites rejected by HTTP, do I have the php header () function Like using a server should go for redirection, or should I redirect a JavaScript-based client side? Ok, I know that sensible solution is to prevent users from generating small links to unacceptable sites. But right now I might not be able to apply it because it requires a detailed amount of data analysis or using expensive word filtering API ... Any help is highly appetized. Thank you. A server-side redirect will be less latency, because the browser can start receiving new ones immediately. While with th...