Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法可以更改.htaccess 中的绝对路径?
例如,当我在本地服务器上工作时,我的 url 是这样的:
本地主机:8888/网站/站点名称/
当我使用像 /assets/css/style.css 这样的绝对路径时,它会在以下位置查找它:
本地主机:8888/assets/css/style.css
但我需要它来查看:
本地主机:8888/网站/站点名称/资产/css/style.css
尝试:
RewriteEngine On RewriteCond %{DOCUMENT_ROOT}/websites/sitename%{REQUEST_URI} -f RewriteRule ^(.+)$ /websites/sitename/$1 [L]
这是通过在本地机器上设置虚拟主机来完成的,而不是通过 .htaccess。