我现在建立了一个网站,每个用户都有自己的页面。
Example: www.example.com/user
但现在我想知道如何为每个用户设置不同的部分。
Example: www.example.com/user/photos
我怎样才能做到这一点?
这是我的用户页面的htaccess;
RewriteEngine On
RewriteOptions MaxRedirects=1
RewriteCond %{REQUEST_FILENAME} -f [NC,OR]
RewriteCond %{REQUEST_FILENAME} -d [NC]
RewriteRule .* - [L]
RewriteRule ^(.*)$ userpage.php?user=$1 [QSA,L]