php的问题包括在子域中

时间:2016-10-11 15:44:23

标签: php css .htaccess subdomain

我刚刚上传了我的网站,但我遇到了子域和php包含的问题。

首先我有一个目录www.main.example,所有内容在localhost中都可以,当我上传到我决定将main转发到www.main.example目录时。

现在,如果我以这种方式浏览它www.example.com/css/page.css我包含的文件将无效,而且我的css,但我设法将完整的网站名称添加到我的css和js,如include_once('../_inc/functions.php'); include_once(__DIR__ . '/../_inc/userlocation.php'); 并正在工作。那么有人可以帮助我使用php路径或任何可以帮我修复此问题的htaccess代码吗?

我试过这个但没有工作

SELECT B.shelf,B.item_id,A.item_name
FROM stock A
JOIN (SELECT shelf, MAX(item_id) as item_id FROM stock GROUP BY shelf) B ON A.item_id=B.item_id AND A.shelf=B.shelf


SELECT A.shelf,A.item_id,A.item_name
FROM stock A
WHERE item_id = (SELECT  MAX(item_id) FROM stock B where A.shelf = B.shelf)

0 个答案:

没有答案