我的.htaccess有问题。
我需要使用Slim Framework获取网址,例如www.domain.com/param1/param2/param3。这适用于.htaccess代码:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
ErrorDocument 404 /error404.php
但是当我尝试进入像admin.domain.com这样的子域名时,我的所有反馈对象都出现了问题,例如图像,CSS,JS,这些对象都包含在我的index.php中。
感谢您的时间!