我对.htaccess文件和重定向比较新,所以我只是想知道如何为每个用户创建虚拟子目录。基本上我想要
domain.com/user/batman
重定向到
domain.com/stats.php?user=batman
感谢。
答案 0 :(得分:0)
将以下规则添加到网络根目录中的.htaccess
“/”
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d # not a dir
RewriteCond %{REQUEST_FILENAME} !-f # not a file
RewriteRule ^user/(.*)/?$ stats.php?user=$1 [NC,QSA,L]