Can I do use a direct URL like twitter or myspace

2019-05-10 15:52发布

Can I do that thing that twitter and many other sites do where a url shows a users page.

www.mysite.com/the_user_name

In php... or how does one do it?

标签: php html url
3条回答
Summer. ? 凉城
2楼-- · 2019-05-10 16:18

The easiest method would be to use mod_rewrite in Apache (as opposed to doing it in PHP). Here's a good beginner's guide.

查看更多
成全新的幸福
3楼-- · 2019-05-10 16:26

The easiest way that I know of is to create a .htaccess file for the website with the RewriteEngine turned on.

For example

RewriteEngine On

RewriteRule ^(.+) /index.php?user=$1

Do a google search for .htaccess and RewriteEngine to get a better grasp of the process or creating an .htaccess file.

查看更多
smile是对你的礼貌
4楼-- · 2019-05-10 16:38
登录 后发表回答