如何使用php显示用户名作为网址的一部分

时间:2017-03-16 05:19:02

标签: php

如何在我的网址示例http://www中传递用户名以此格式显示。 example.com/username而不是http://www.example.com/?user = username 任何帮助都会有很长的路要走,谢谢

1 个答案:

答案 0 :(得分:0)

以下是如何撰写的:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?user=$1 [NC]

如果您希望/category/username模拟/category.php?user=username,那么:

Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^category/(.*)$ category.php?user=$1 [NC]