页面重定向.htaccess [自定义网址]

时间:2015-05-15 18:54:56

标签: php mysql .htaccess redirect

我想建立一个推荐系统,但它基于推荐系统来查找它在数据库中的价值,我想用这段代码重定向用户的页面。我试着解释链接的结构应该在底部。我们怎么做?

  

数据库 - > USERCODE(A6465S) - > example.com/A6465S(USERCODE) - >用户页面(重定向) - > site.com/users.php?id=10 - >已完成

1 个答案:

答案 0 :(得分:1)

在你的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]