How can I send /#/pagetitle to /pagetitle?
I need some help writing a .htaccess
file.
I'm using a Flash based theme and it creates URLs like this:
http://www.mysite.com/#/pagetitle
How can I redirect these to:
http://www.mysite.com/pagetitle
开发者_StackOverflow中文版
?
Apache (and anything that runs serverside) can not access anything after #
; that part is the fragment and available to client side only (JavaScript).
You will need to use JavaScript to access that programmaticly.
精彩评论