由于缺乏更好的词汇,我的头衔不是最好的,但我会向你描述更多我正在寻找的东西。我刚刚将我的网站设置为剥离文件扩展名(website.com/home),现在我只是有一些关于如何在整个网站中整合此过程的问题。
我的主要问题是,当我在我的网站上查看用户个人资料时,而不是通过website.com/ 个人资料?id = 1 将其调用到该页面,我想知道如何通过输入website.com/ profile / 1 来调用它。如果有人有任何建议会很棒!
答案 0 :(得分:0)
你必须使用这样的重写规则:
RewriteEngine on
RewriteRule ^profile/([0-9]+)/?$ /profile.php?id=$1 [QSA,L]
了解重写的一些资源:
http://www.askapache.com/htaccess/mod_rewrite-basic-examples.html
http://www.cheatography.com/davechild/cheat-sheets/mod-rewrite/
http://www.branded3.com/blogs/htaccess-mod_rewrite-ultimate-guide/