I would like to change all href's in a website.
<a href="sitename">xyz …</a>
to:
<a href="sitename.html>xyz …</a>
Thanks for help!
I would like to change all href's in a website.
<a href="sitename">xyz …</a>
to:
<a href="sitename.html>xyz …</a>
Thanks for help!
$content = file_get_contents('page.html');
$new_content = str_replace('<a href="', '<a href="sitename.html', $content);
echo $new_content;