开发者

How to beautify the URL?

开发者 https://www.devze.com 2022-12-30 07:05 出处:网络
I am sick of this kind of URL: www.domain.com/something/?id=person&photos=photoID&variable1=others&...

I am sick of this kind of 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 one?

Ugly:

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

Goal:

 www.domain.开发者_如何学运维com/something/person/photoID


RewriteEngine on

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


This is an extremely helpful article on Mod_Rewrite

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号