or html refresh .htaccess Redirect 301 / https://example.com/ RewriteEngine On RewriteCond %{HTTP_HOST} ^example.com$ [OR] RewriteCond %{HTTP_HOST} ^www.example.com$ RewriteRule (.*)$ https://www.dreamhostexample.com/$1 [R=301,L] ## Redirect to a local site file ## Redirect /path/to/old/file/old.html /path/to/new/file/new.html ## Redirect to an external site file ## Redirect /path/to/old/file/old.html https://www.example.com/new/file/new.html Redirecting a Single URL ErrorDocument 404 https://example.com/ Redirecting a Single Folder RedirectMatch 301 /oldpage/ /newpage/ RewriteRule ^/?folder/(.\*)$ /location/$1 [R,L]
dev β development
tst β Testing
stg β Staging
prd β Production
app β Application Server (non-web)
sql β Database Server
ftp β SFTP server
mta β Mail Server
dns β Name Server
cfg β Configuration Management (puppet/ansible/etc.)
mon β Monitoring Server (nagios, sensu, etc.)
prx β Proxy/Load Balancer (software)
ssh β SSH Jump/Bastion Host
sto β Storage Server
vcs β Version Control Software Server (Git/SVN/CVS/etc.)
vmm β Virtual Machine Manager
web β Web Server
_dmarc.bsundry.com. 14400 TXT
v=DMARC1; p=none; rua=mailto:
108.101.180.107.in-addr.arpa..bsundry.com. 14400 PTR
bsundry.com
bsundry.com. 14400 TXT
v=spf1 +a +mx +ip4:107.180.101.108 ~all
108.101.180.107.in-addr.arpa.jasonhoblin.com. 14400 PTR bsundry.com_dmarc.jasonhoblin.com. 14400 TXT v=DMARC1; p=none; rua=mailto:This email address is being protected from spambots. You need JavaScript enabled to view it. .
UPDATE `table_name` SET `field_name` = replace(same_field_name, 'unwanted_text', 'wanted_text') update table_name set field_name = replace( field_name, 'original text', 'replacement text'); update [table_name] set [field_name] = replace([field_name],'[string_to_find]','[string_to_replace]');
< php $t = date("H"); if ($t < "10") { echo "Have a good morning!"; } elseif ($t < "20") { echo "Have a good day!"; } else { echo "Have a good night!"; } ?>