We can't find the internet
Attempting to reconnect
Something went wrong!
Hang in there while we get back on track
Hereβs a simple function to update the path of a given URL:
function updateUrlPath(url, newPath) {
const urlObj = new URL(url);
urlObj.pathname = newPath;
return urlObj.toString();
}
Example usage:
const originalUrl = "https://example.com/old-path?query=123";
const newPath = "/new-path";
const updatedUrl = updateUrlPath(originalUrl, newPath);
console.log(updatedUrl); // "https://example.com/new-path?query=123"
Explanation:
- The
URL
constructor is used to parse the given URL. - The
pathname
property is updated with the new path. - The
toString()
method returns the updated URL as a string.
This method ensures that query parameters and other parts of the URL remain unchanged while only modifying the path.
If this post was enjoyable or useful for you, please share it! If you have comments, questions, or feedback, you can email my personal email. To get new posts, subscribe use the RSS feed.