Çözüm

<script>
console.log( window.location.href );  // whatever your current location href is
window.history.replaceState( {} , 'KingTurk', '/KingTurk );
console.log( window.location.href );  // oh, hey, it replaced the path with /KingTurk 
</script>