Is there any methods other than header and link to change the browser url in php ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
headerissues a header to the browser. It can be used to redirect (when using the “Location:” header, which sends a 302 redirect) but is also used to serve any arbitrary header (for setting MIME types, for example).linkis used to create hardlinks on a filesystem and has nothing to do with browser URLs.If you wish to mask a URL as another and are running PHP with Apache, consider using an
.htaccessfile andmod_rewriteto set up URL rewriting rules. For more info, consult the manual.