gpt4 book ai didi

javascript - 301 重定向用于(而不是)js 脚本

转载 作者:行者123 更新时间:2023-12-02 19:52:02 26 4
gpt4 key购买 nike

我必须重定向 js 脚本,我尝试过在 htaccess 中使用 301 定义,但它不起作用。我到处都找到了如何用js重定向页面,但没有找到如何重定向js。我有一个系统,用户必须安装在调用在线 js 文件的个人设备上,现在我已经更改了服务器,并且必须重定向对旧 js 的所有请求。谢谢

最佳答案

如果您更改了域名。在您之前的域文档根目录中使用此 .htaccess 文件。

<IfModule mod_rewrite.c>

RewriteEngine On
RewriteBase /

# Redirect JS file
# If someone enters http://olddomain.com/old.js in the browser it will be
# redirected to http://newdomain.com/scripts/script.js file
RewriteRule ^old.js$ http://newdomain.com/scripts/script.js [R=301,L]

# Redirect domain
Options +FollowSymLinks
RewriteCond %{HTTP_HOST} ^olddomain.com [NC]
RewriteRule ^(.*)$ http://newdomain.com/$1 [R=301,L]


</IfModule>

关于javascript - 301 重定向用于(而不是)js 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9143703/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com