$(document).ready(function(){
$('a[href^="https://www.medbowtech.com/about-us/"]').each(function(){
var oldUrl = $(this).attr("href"); // Get current url
var newUrl = oldUrl.replace("https://www.medbowtech.com/about-us/", "https://www.medbowtech.com/about-us/our-story/"); // Create new url
$(this).attr("href", newUrl); // Set herf value
});
});