I have a basic web page with a few divs on it with the ids one to ten. When I visit a URL like this:
www.example.com/page.php#six
the page will load and I will be looking at div id six.
I'd like a RewirteRule which allows a url like this:
www.example.com/page/six
and the page will load and I will be looking at div id six.
The rule I'm trying to use at the moment goes as follows but does not work:
RewriteRule ^page/six /page.php\#six [L,QSA]
Help is greatly appreciated :)