我的.htaccess
有以下行RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{HTTP_HOST} ^(.*)\.domain\.com
RewriteRule ^(.*)$ index-merchant.php?id=%1 [L,NC,QSA]
如果我进入
,会发生什么trytry.domain.com
它将使用index-merchant.php?id = trytry
这个问题是
我的css样式表和js
<link rel="stylesheet" href="canvas/css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="canvas/style.css" type="text/css" />
此文件不起作用,当我点击它们时,它再次打开网站本身。即使在我做了这个子域名htaccess
之后,我如何让我的css和js工作另一个问题是
trytry.domain.com/category/helloworld
我想修改我的htaccess,以便它可以捕获 trytry (子域)和查询字符串 helloworld
感谢您的帮助!
答案 0 :(得分:0)
如果我理解得很好 尝试在您拥有的每个页面的头部中添加基本标记
它看起来应该是这样的
<base href="http://your_domain/">