SEO Help and Tips How to Website Disallow and Allow directives by Robots.txt ? Disallow and Allow directives all Robots.txt Here: Disallow: ------------ User-agent:* Disallow: / # prohibits crawling for the entire site User-agent:* Disallow: /catalogue # prohibits crawling the pages that start with /catalogue User-agent:* Disallow: /page? # Prohibits crawling the pages with a URL that contains parameters Allow: ------------ User-agent:* Allow: /cgi-bin Disallow: / # prohibits downloading anything except pages # starting with '/cgi-bin' User-agent:* Allow: /file.xml # allows downloading the file.xml file Common: ------------ User-agent:* Allow: /archive Disallow: / # allows everything that contains '/archive', everything else is prohibited User-agent:* Allow: /obsolete/private/*.html$ # allows HTML files # in the '/obsolete/private/...' path ...
SEO Help and Tips How to Fix Mixed Content Issues Mixed content issues occur when a webpage served over HTTPS includes resources (such as images, scripts, or stylesheets) loaded over HTTP. This can lead to security vulnerabilities and a poor user experience. Here's how you can fix mixed content issues: 1. Identify Mixed Content Browser Console: Use your browser’s developer tools (usually found in the "Console" tab) to identify mixed content warnings and errors. Online Tools: Use online tools like Why No Padlock or SSL Labs to check for mixed content issues. 2. Update Resource URLs Change URLs to HTTPS: Update all resource URLs in your HTML, CSS, and JavaScript files to use HTTPS instead of HTTP. For example: html <!-- Change this --> <img src="http://example.com/image.jpg" alt="Image"> <!-- To this --> <img src="https://example.com/image.jpg" alt="Image"> Relative URLs: Use relative URLs (e.g., /images/image....
SEO Help and Tips How to fix SSL Certificate Issues in Website? Fixing SSL certificate issues can vary depending on the specific problem. Here’s a general guide to addressing common SSL certificate issues: 1. Expired SSL Certificate Solution: Renew the SSL certificate with your Certificate Authority (CA). Most CAs offer automated reminders for renewal. After renewal, install the new certificate on your server. 2. Mismatched Domain Name Solution: Ensure the SSL certificate matches the domain name (e.g., if the certificate is for www.example.com, accessing example.com without www might cause issues). Use a wildcard certificate (e.g., *.example.com) or a Subject Alternative Name (SAN) certificate to cover multiple subdomains. 3. Untrusted Certificate Authority Solution: Ensure the SSL certificate is issued by a trusted CA. Browsers maintain a list of trusted CAs, and if your certificate isn’t from one of them, users will see a warning. Consider using a recognized CA like Le...
SEO Help and Tips How to Website Disallow and Allow directives by Robots.txt ? Disallow and Allow directives all Robots.txt Here: Disallow: ------------ User-agent:* Disallow: / # prohibits crawling for the entire site User-agent:* Disallow: /catalogue # prohibits crawling the pages that start with /catalogue User-agent:* Disallow: /page? # Prohibits crawling the pages with a URL that contains parameters Allow: ------------ User-agent:* Allow: /cgi-bin Disallow: / # prohibits downloading anything except pages # starting with '/cgi-bin' User-agent:* Allow: /file.xml # allows downloading the file.xml file Common: ------------ User-agent:* Allow: /archive Disallow: / # allows everything that contains '/archive', everything else is prohibited User-agent:* Allow: /obsolete/private/*.html$ # allows HTML files # in the '/obsolete/private/...' path ...
SEO Help and Tips How to Fix Mixed Content Issues Mixed content issues occur when a webpage served over HTTPS includes resources (such as images, scripts, or stylesheets) loaded over HTTP. This can lead to security vulnerabilities and a poor user experience. Here's how you can fix mixed content issues: 1. Identify Mixed Content Browser Console: Use your browser’s developer tools (usually found in the "Console" tab) to identify mixed content warnings and errors. Online Tools: Use online tools like Why No Padlock or SSL Labs to check for mixed content issues. 2. Update Resource URLs Change URLs to HTTPS: Update all resource URLs in your HTML, CSS, and JavaScript files to use HTTPS instead of HTTP. For example: html <!-- Change this --> <img src="http://example.com/image.jpg" alt="Image"> <!-- To this --> <img src="https://example.com/image.jpg" alt="Image"> Relative URLs: Use relative URLs (e.g., /images/image....
SEO Help and Tips How to fix SSL Certificate Issues in Website? Fixing SSL certificate issues can vary depending on the specific problem. Here’s a general guide to addressing common SSL certificate issues: 1. Expired SSL Certificate Solution: Renew the SSL certificate with your Certificate Authority (CA). Most CAs offer automated reminders for renewal. After renewal, install the new certificate on your server. 2. Mismatched Domain Name Solution: Ensure the SSL certificate matches the domain name (e.g., if the certificate is for www.example.com, accessing example.com without www might cause issues). Use a wildcard certificate (e.g., *.example.com) or a Subject Alternative Name (SAN) certificate to cover multiple subdomains. 3. Untrusted Certificate Authority Solution: Ensure the SSL certificate is issued by a trusted CA. Browsers maintain a list of trusted CAs, and if your certificate isn’t from one of them, users will see a warning. Consider using a recognized CA like Le...
Comments
Post a Comment
Thanks for your Comments.