How to beautify the URL?

2019-05-23 16:37发布

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

2条回答
该账号已被封号
2楼-- · 2019-05-23 17:36

This is an extremely helpful article on Mod_Rewrite

查看更多
我欲成王,谁敢阻挡
3楼-- · 2019-05-23 17:37
RewriteEngine on

RewriteRule ^something/(.*)/(.*)$ something/?id=$1&photos=$2 [QSA]
查看更多
登录 后发表回答