Link to home
Start Free TrialLog in
Avatar of eugie17
eugie17Flag for United States of America

asked on

how to make the urls seo friendly

I have apache server and website set up that uses PHP/MySQL

most pages on the website are dynamic (ie. use ?var=val )

how can I make them SEO friendly URLs?
ASKER CERTIFIED SOLUTION
Avatar of almilyo
almilyo

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jbrashear72
jbrashear72

Options +FollowSymLinks
RewriteEngine on
RewriteRule ^(.*).html index.php?article=$1

This will create a url that looked like:
?article=43

to
43.html
That rule can be added to .htaccess
Avatar of eugie17

ASKER

thanks
Avatar of eugie17

ASKER

thamk you guys
is there any downloadable guide or reference to .htaccess ?
Avatar of eugie17

ASKER

thank you jbrashear72
My pleasure man... I use Mod rewrite all the time for creating urls just for SEO.

look me up any time.

semfreak    gmail..


-J