https://demo.jp/hoge
↓
https://demo.jp/ogp/hoge
のようにURL切って間にパスを挿入する方法です。
splitメソッドを使用する
split()
を使用して、URLを切ります。
const originallUrl = 'https://demo.jp/hoge'
const url = originallUrl.split('https://demo.jp/')
console.log(url) //[ '', 'hoge' ]
const newUrl = 'https://demo.jp/' + 'ogp/' + url[1]
console.log(newUrl) //https://demo.jp/ogp/hoge
split()
を使用すると配列で取得できるので、url[1]
で新しいURLに代入しています。