有没有办法可以通过.htaccess更改子文件夹的绝对路径?
我的dillema:
网站网址为<script src="/assets/script.js"></script>
但是当我使用绝对路径时:
<a href="/projects/">Projects</a>
OR
http://localhost/assets/script.js
网址更改为http://localhost/projects
和http://localhost/build/assets/script.js
我需要它们
http://localhost/build/projects
和{{1}}
此项目需要使用绝对路径。
答案 0 :(得分:2)
我将以下内容放在根目录中的.htaccess中,即http://localhost
。适用于href
和src
代码。
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/build
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^.*$ /build/$0 [L]
希望这有助于其他人。