我想做那样的事情。因此,当我尝试登录时,我的系统会将我导航到http://www.example.com/username
,我想重写为../admin/index.php
我之前在.htaccess中完成了这项工作,但在网络服务器中,nginx还没有工作。
location = /username {
rewrite ^ /admin/index.php;
}
我到这个位置的php链接如下:
<?php echo SITEURL . "/" . $user->username; ?>
当我手动更改/username
而不是我的真实用户名时,我的工作就像我想要的那样,但是如何让我的网址重写使用数据库中的变量用户名?谢谢你的帮助