Jump to content

htaccess SEO friendly URL

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
4 replies to this topic

#1
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
I want to make SEO friendly URLS, how can I make it with .htaccess?

Currently I have my website like this:-
http://www.mywebsite...p?sid=1&recat=3

but I want it to look like this:
http://www.mywebsite.../Name-Of-Review

I would like it something like that or similar. Can anyone help me please?

Thanks

#2
Guest_Jordan_*

Guest_Jordan_*
  • Guests
This may help you: .htaccess, 301 Redirects & SEO: Guest Post by NotSleepy : SEO Book.com

#3
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
Thanks I'm going to read it right now. Will tell you if I find what I want.

#4
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
Nope it did not work, currently my htaccess has these lines:-

Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^finditglobally.com [nc]
rewriterule ^(.*)$ http://www.finditglobally.com/$1 [r=301,nc]

and it seems like i have to add something like this:-

RewriteRule ^index.php?cat=(.*)$ /staticpage.htm [L,R=301]

but didn't work. can anyone help please?

#5
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
Ok no problems, I made it work. Has some minor problems.. just lack of .htaccess knowledge lol. but now I'm trying another method.