Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 MySQL 中有一个表。我想在我的目录中创建一个新文件,每一行都会有一个唯一的页面。唯一的问题是,许多行都与同一个用户(相同的 ID)相关。我想确保用户只会看到他们的页面。知道我该怎么做吗?
您可以使用 .htaccess 文件和虚拟地址,例如: www.site.com/128.html htaccess 的上行地址代码是:
RewriteRule (.*)\.html$ index.php?user_id=$1 [L]
您可以使用 $_GET['user_id'] 变量检查用户 ID。