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.
我有一个带有一个 CodeIgniter 应用程序、一个数据库但有两个域的网站。这是我第一次处理这种情况,所以......我该如何配置在两个域中运行我的 CI 网站,请帮忙。
在DB config文件中写这样的条件
DB config
if(strpos($your_current_url, 'domain1') !== FALSE) : /* * DB CONFIG FOR DOMAIN1 */ elseif(strpos($your_current_url, 'domain2') !== FALSE) : /* * DB CONFIG FOR DOMAIN2 */ endif;