我想通过创建动态子域来在服务器上显示用户的迷你网站。
重写规则如下:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.yourwebsite.com
RewriteCond %{HTTP_HOST} ([^.]+)\.yourwebsite.com
RewriteRule ^(.*)$ /path_to_your_site/public_html/app/test/home.php?url=%1
在home.php页面中包含web.css文件,如下所示:
但由于css文件路径问题,CSS未在home.php页面上应用。
答案 0 :(得分:1)
我建议为这些文件使用另一个子域,例如static.yourwebsite.com
。
如果我没有弄错,那么你必须将此行添加到.htaccess文件中:
RewriteCond %{HTTP_HOST} !^static\.yourwebsite.com