I am sending an AJAX request like this:
$(document).ready(function(){ $('#blog_url').click(function(){ $.ajax({ url: "blog.php", cache: false, success: function(html){ $(".row").html(html); window.location.hash = 'blog.php'; } }); });
Changing the URL is but the link becomes site.ru/blob.php#blog.php
Tell site.ru/blog.php
how to make the link become site.ru/blog.php
?