静态文件未在html Apache中加载

时间:2017-05-10 00:45:41

标签: php apache .htaccess mod-rewrite

我面临一个奇怪的问题,静态文件正在加载到html标签内,但它们正在加载精美的目录。 Css,Js,Images等都直接访问时加载正常但在html内部时不加载。 PHP版本是5.6。我只能访问cPanel,因为它是共享主机。请帮我解决这个问题,谢谢。

我的.htaccess文件

RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteCond %{REQUEST_URI} !/system/.* [NC]
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]

我也不知道我必须向主持人询问哪个权限。

0 个答案:

没有答案