Redirect for special characters
Redirect for special characters - If a page has internal and external outgoing links to redirecting URLs, it’s returning 3xx (301, 302, etc.) HTTP status codes standing for redirection. This issue means that the page does not exist on a permanent or temporary basis. It appears on most of the popular web browsers, usually caused by a misconfigured website. However, there are some steps you can take to ensure the issue isn’t on your side. You can find more details about redirecting URLs by reading the Google Search Central overview. In this article, we’ll go over how you can fix the Redirect for special characters error on your web browser. Problem : I want to set a redirect as below. http://www.domain.com/course/view.php?id=2 TO http://www.domain.com/course/view.php?id=2§ion=1 Can you please let me know how can this be set ? Solution : You could do it in the PHP itself <?php header("HTTP/1.1 301 Moved Permanently"); header("Location: htt...