This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When you visit [bloginfo show="name"] details of your visit may be logged in the following ways: | |
<ul> | |
<li>Standard web server logging</li> | |
<li>Google Analytics. Google Analytics uses cookies to accumulate analytics data. This analytics data is used for the purpose of determining the volume and types of usage of the [bloginfo show="name"] web site. Details of Google’s usage of this data may be found at <a href="https://policies.google.com/technologies/partner-sites" target="_blank" rel="noopener noreferrer">https://policies.google.com/technologies/partner-sites</a></li> | |
<li>Error logging generated by components of the [bloginfo show="url"] web site, which may occur from time-to-time.</li> | |
</ul> | |
Information logged may include, but may not be limited to: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git init | |
git add . | |
git commit -m "Initial Commit" | |
// You can find the URL next to the git clone command for the repository. | |
// E.g., {URL} = https://[email protected]/username/repo.git | |
// | |
// Refer to: https://community.atlassian.com/t5/Git-questions/fatal-No-such-remote-origin-after-git-remote-set-url-origin/qaq-p/401456 | |
// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# BEGIN WordPress | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
#RewriteCond %{SERVER_PORT} 80 | |
#RewriteRule ^(.*)$ https://domain.com/$1 [R,L] | |
RewriteRule ^index\.php$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f |