gpt4 book ai didi

php - 使用 .htaccess [自定义 URL] 进行页面重定向

转载 作者:行者123 更新时间:2023-11-29 12:13:30 25 4
gpt4 key购买 nike

我想制作一个推荐系统,但它是基于推荐系统来查找它在数据库中的值,并且我想使用此代码重定向用户的页面。我试图解释链接的结构应该在底部。我们如何做到这一点?

DATABASE --> USERCODE(A6465S) --> example.com/A6465S(USERCODE) --> USER PAGE(REDIRECT) --> site.com/users.php?id=10 --> COMPLETED

最佳答案

在 root/htaccess 文件中尝试一下:

#turn on the engine for rewriting
RewriteEngine On

#if the request is for a existing file or directory, then skip the rewrite rule
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f

#Rewrite the short url
RewriteRule ^([a-zA-Z0-9]+)/?$ /users.php?id=$1 [QSA,L]

关于php - 使用 .htaccess [自定义 URL] 进行页面重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30266823/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com