How to decorate the URL?

I am hurt by this url:

 www.domain.com/something/?id=person&photos=photoID&variable1=others&...

      

I am using apache learning to write .htaccess now. Can anyone show me the basic code for this?

Awful:

 www.domain.com/something/?id=person&photos=photoID

      

Goal:

 www.domain.com/something/person/photoID

      

+2


a source to share


2 answers


RewriteEngine on

RewriteRule ^something/(.*)/(.*)$ something/?id=$1&photos=$2 [QSA]

      



+5


a source


This is an extremely helpful article on Mod_Rewrite



+3


a source







All Articles