Need a generic way to create SEO friendly URL

Posted by Fawad Ghafoor as Xainee Khan on Pro Webmasters See other posts from Pro Webmasters or by Fawad Ghafoor as Xainee Khan
Published on 2012-09-13T12:33:12Z Indexed on 2012/09/13 15:51 UTC
Read the original article Hit count: 358

I have searched a lot and implemented many many Regular Expression in my .htaccess file but can not succeed. How do I find a generic way that make my URL SEO friendly?

Currently this is in my .htaccess file:

   RewriteEngine On
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^(.*)$ index.php?page=$1 [L,QSA]

What I need to do is that I have a URL like this:

   http://localhost/abc/index.php?page=boats_for_sale

I need to change it to

  http://localhost/abc/boats_for_sale

Similarly, I want to hide all query strings in my URL. How would I achieve it?

© Pro Webmasters or respective owner

Related posts about seo

Related posts about htaccess