我会这样做:
const url = require('url');
const replacedText = data.toString().replace(regex, (fullResult, imagePath) => {
const newImagePath = url.resolve('http://www.example.org', imagePath)
return `](${newImagePath}`;
})
但是使用此代码,仅执行<html>
页。有没有办法将它们链接起来。
答案 0 :(得分:0)
要链接php页面,我找到了一个解决方案,虽然不是很美观,但却可以完成工作。 我在每个php页面上添加了一段html代码,并用一个小的javascript脚本调用了下一个。
$(document).ready(function() {
window.location ='http://xxxx';
}