Hi I have a website with a product page that dynamically creates the page with all its products from a database.
So I use the .htaccess file to create search engine friendly URLs, for instance: www.festfiresecurity.co/Products.php?val=1
to
Clean-Gas-Systems.php
like this:
RewriteRule ^Clean-Gas-Systems /Products.php?va l=1
What I do:
I have a html menu (for none-javascript users) built with html anchors and I link to a product like this:
<a href="www.festf iresecurity.co/Products.php?va l=1">Clean Gas</a>
and successfully see the seo friendly url:
Clean-Gas-Systems.php
What I want to achieve:
I also have a flash menu (for javascript users) that links to the same products. The problem is I dont get or see the seo friendly url when using javascript to navigate to products instead I get the normal query string url:
Products.php?va l=1
Does anyone know how to use javascript to navigate to pages and get the correct search engine friendly URL using the .htaccess file like you would get using html anchors?
Please help.
So I use the .htaccess file to create search engine friendly URLs, for instance: www.festfiresecurity.co/Products.php?val=1
to
Clean-Gas-Systems.php
like this:
RewriteRule ^Clean-Gas-Systems /Products.php?va l=1
What I do:
I have a html menu (for none-javascript users) built with html anchors and I link to a product like this:
<a href="www.festf iresecurity.co/Products.php?va l=1">Clean Gas</a>
and successfully see the seo friendly url:
Clean-Gas-Systems.php
What I want to achieve:
I also have a flash menu (for javascript users) that links to the same products. The problem is I dont get or see the seo friendly url when using javascript to navigate to products instead I get the normal query string url:
Products.php?va l=1
Does anyone know how to use javascript to navigate to pages and get the correct search engine friendly URL using the .htaccess file like you would get using html anchors?
Please help.
Comment