i have a website www.worldebooksales.com i want to know how i can make it url friendly i believe this can be know via the htaccess file any ideas
You should disable session id's for guests. Google doesnt like em. And you should do a mod rewrite, something like this: RewriteEngine on Options FollowSymLinks RewriteBase / RewriteRule ^index-([0-9]+)-([0-9]+).html$ index.php?cPath=$1_$2 Code (markup): I haven't tested it...
Try this: RewriteEngine on Options FollowSymLinks RewriteBase / RewriteRule ^index-([0-9]+)-([0-9]*)-([a-zA-Z0-9_]*).html$ index.php?cPath=$1_$2&sessionid=$3 Code (markup): Not sure...
If you want the dynamic urls appear as if they are static you can use Apache's mod_rewrite to create search engine friendly urls.