so that it will launch it at startup, even if there is no GUI installed (useful for Ubuntu servers).
~$crontab -e
Select the text editor (I choosed NANO by hitting 1)
<?php | |
array( | |
'AED' => 'United Arab Emirates Dirham', | |
'AFN' => 'Afghan Afghani', | |
'ALL' => 'Albanian Lek', | |
'AMD' => 'Armenian Dram', | |
'ANG' => 'Netherlands Antilles Guilder', | |
'AOA' => 'Angolan Kwanza', | |
'ARS' => 'Argentine Peso', |
<?php | |
// Permanent 301 Redirect via PHP | |
header("HTTP/1.1 301 Moved Permanently"); | |
header("Location: https://iamprogrammer.lk/"); | |
exit(); | |