
10-22-2004, 06:06 AM
|
 |
SEO
|
|
Join Date: May 2004
Posts: 191
|
|
Quote:
|
Originally Posted by bluegecko
I have a new directory that I'm trying to setup, and need help converting the dynamic looking URL's to static ones.
The directory sits on a sub domain.
The dynamic URL looks like:
http:// sub-domain.top-level-domain com/view_State_Category.php?Cat_ID=7&Country_ID=123&logedin=
I would like it to be a search engine friendly, static looking URL.
What would be the best looking static URL example from an SEO point of view, and what would an example of the .htaccess file code to implement it?
Can anyone advise me?
Thanks in advance.
|
Try this
RewriteRule ^([0-9]*)/([0-9]*)/$ view_State_Category.php?Cat_ID=$1&Country_ID=$2&logedin= [L,NC]
Here some example
|