Afternoon,
Is it possible to put a rule in the htacces redirection something like http://example.com/portfolio to http://example.com/index.php#portfolio while not displaying this last address in the URL field of the browser?
I know the hast doesn't get send to the server, but there must be some kind of way to mask these ugly URLs..
Might be relevant to the question or not, but I have the following jQuery code
if(history.pushState){
history.pushState(null,null,'#'+$(this).attr('class'));
}else{
location.hash = '#'+$(this).attr('class');}
}
if(window.location.hash){
var hash = window.location.hash.substring(1);
if(jQuery.browser.webkit){
$('html,body').animate({scrollTop:$('#'+hash).offset().top-2*88},'slow');
}else{
$('html,body').animate({scrollTop: $('#'+hash).offset().top-3*88-10},'slow');}
}
}
Thanks in advance for any solution.