我正在尝试到使用这样的建立结构上载到cpanel
我所有的脚本都在静态文件夹中,但当打开我的网站时,它抛出服务器:1获取https://mysite/448.448.2858b0.js网络::错误_中止404主脚本正在尝试从根文件夹加载块,但我想从静态文件夹加载它们我怎样才能写一个htaccess规则来重定向所有请求从主脚本文件到静态子文件夹
pbwdgjma1#
在https://httpd.apache.org/docs/trunk/rewrite/remapping.html中找到了解决方案,并将其添加到htaccess文件中
RewriteEngine on # first try to find resource in static/... RewriteCond "%{DOCUMENT_ROOT}/static/%{REQUEST_URI}" -f RewriteRule "^(.+)" "%{DOCUMENT_ROOT}/static/$1" [L] RewriteRule "^" "-"
1条答案
按热度按时间pbwdgjma1#
在https://httpd.apache.org/docs/trunk/rewrite/remapping.html中找到了解决方案,并将其添加到htaccess文件中