使用包含问号的 URL 启动 Chrome

使用包含问号的 URL 启动 Chrome

我一直在使用作为参考创建一个 bat 文件以使用预定的 url 路径启动 chrome,但我遇到了一个问题。

这是我的 bat 文件的内容

start "google" "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --allow-file-access-from-files "H:\testsite\index.html?cd0=../test.txt&auto=1"

问题是 Chrome 启动到 H:\testsite\index.html%3Fcd0=../test.txt&auto=1 而不是 H:\testsite\index.html?cd0=../test.txt&auto=1,这意味着找不到该页面。我需要手动将 %3F 替换为 ? 才能使其工作。

我该如何解决?

答案1

您可以file:///在字符串路径//文件中添加:

start "google" "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --allow-file-access-from-files "file:///H:\testsite\index.html?cd0=../test.txt&auto=1"

相关内容