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.
有没有办法在我的 domain.com 上加载我在 sub.domain.com 上的脚本?我需要以某种方式执行此操作,而无需从子域的文件夹中移动脚本。
有什么办法可以用 htacess 做到这一点?
谢谢
domain.com/script要从sub.domain.com/script的子文件夹中加载domain.com,您可以使用
domain.com/script
sub.domain.com/script
domain.com
Redirect /script /subdomain/script
如果您希望浏览器 URL 保持不变,则必须使用RewriteRulea
RewriteRule
RewriteEngine On RewriteRule script subdomain/script