是否可以使.htaccess通过PHP连接到DB

时间:2015-01-09 19:35:16

标签: php .htaccess

是否可以使用PHP从数据库中读取内容并将其传输到.htaccess文件,如读取$ url然后使文件继续.htaccess并将其givven的$ url添加到数据库中...

2 个答案:

答案 0 :(得分:2)

不,不可能。你要的是叫做路由,用纯PHP实现。你只需要.htacces就可以将所有url调用重定向到你可以解析路由的单个php文件。

您可以在此处阅读更多内容http://blogs.shephertz.com/2014/05/21/how-to-implement-url-routing-in-php/

答案 1 :(得分:-1)

检查@shaddy的答案。

这是你应该去的方式。

你正在混合你的想法:-)。 尝试以这种方式重新考虑您的应用程序结构:

1. user types in browser whatever he wants 

2. htaccess must redirect any uri to your unique script, let say index.php 

3. in that index.php you do whatever YOU want, call database, prepare vars, set conditions, 

and CALL OTHER scripts depending on your conditions. that is an idea of routing :-)

和google'路由php示例': - )