How to set all link to https
using php or .htaccess ?
with this code
<?PHP
$path_image = "404.png";
?>
<img src="<?PHP echo $path_image; ?>">
when inspect elements it's show
<img src="404.png">
i want to change inspect view to
<img src="https://www.example.com/404.png">
How can i do that with php or .htaccess ?