php执行链接页面

时间:2018-10-17 14:47:43

标签: php header

我会这样做:

const url = require('url');
const replacedText = data.toString().replace(regex, (fullResult, imagePath) => {
    const newImagePath = url.resolve('http://www.example.org', imagePath)
    return `](${newImagePath}`;
})

但是使用此代码,仅执行<html>页。有没有办法将它们链接起来。

1 个答案:

答案 0 :(得分:0)

要链接php页面,我找到了一个解决方案,虽然不是很美观,但却可以完成工作。 我在每个php页面上添加了一段html代码,并用一个小的javascript脚本调用了下一个。

$(document).ready(function() {
    window.location ='http://xxxx';
}