今天发现,用xampp或者phpstudy进入localhost,css路径出错

做了功课后发现这个方法可以解决

进apache里面的config->httpd.conf

这段写在最后E:/yyt/web是我的服务器地址

 

<VirtualHost *:80>
ServerName yyt.app
DocumentRoot "E:/yyt/web"
<Directory "E:/yyt/web">
Options FollowSymLinks IncludesNOEXEC Indexes
DirectoryIndex index.html index.htm index.php
AllowOverride all
Order Deny,Allow
Allow from all
Require all granted
</Directory>
</VirtualHost>