How to beautify the URL?

痞子三分冷 提交于 2020-01-02 15:47:52

问题


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

回答1:


RewriteEngine on

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



回答2:


This is an extremely helpful article on Mod_Rewrite



来源:https://stackoverflow.com/questions/2824275/how-to-beautify-the-url

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!