hi is there is any way to change the display url in addressbar to avoid bookmark
Why would you want to?
In PHP you can’t (it’s server side scripting)
However you can do a redirect:
header (‘HTTP/1.1 301 Moved Permanently’);
header(“Location: new-url”);
die();
just i need to show the page but not the exact name of the page. it should be different one.
You need to give more details about what you are trying to do. The “name” of the page is not the same as the URL.
The address bar will always show the current page url. You can’t change it. It would be very bad if browsers let a site change that.