In case of a domain change of existing website, you need to redirect old URLs properly to the new domain. Also, inform Google through Search Console about this address change. This helps you to save your website’s rankings in Google Search Results appearance.
Tag » URL
10 Better SEO Tips for Rankings Including WordPress
We’d like to share you self-experienced tips for better SEO and to bring more traffic to your website. These aren’t just 10 tips to improve the rankings of a website in Search Results. Rather, these are sort of our experience you should know while you’re doing hard efforts for better SEO and rankings.
Create LD-JSON Breadcrumb Structured Data using Yoast SEO
LD-JSON Breadcrumb Structured Data is a format to let search engines understand the website hierarchy better. You can create LD-JSON Breadcrumb Structured Data using Yoast SEO plugin in WordPress website. After custom breadcrumb navigation, create LD-JSON Rich Data.
Custom Breadcrumb Navigation using Yoast SEO Plugin
Yoast SEO is one of the most popular WordPress SEO plugins. The plugin offers a breadcrumb navigation feature to put on your WordPress website. However, sometimes we wish to grab these breadcrumb items in an Array.
Remove or Hide Menu Items from WordPress Admin Panel or Dashboard
You often need to remove or hide menu items from WordPress admin panel or dashboard. This is a common requirement if you develop WordPress websites for clients or manage multi-user blog.
3 Ways to Convert or Save webp image to jpg / png
Have you ever tried to save a webp image as jpg or png? And wondering it’s downloaded or saved as webm instead of usual png or jpg extension. So here are quick fixes to convert or save webm image to jpg / png before or after download.
No input file specified. Codeigniter & htaccess
I have few sites of clients running with Codeigniter and are hosted by different hosts including Godaddy, Host Gator and others. With few hosts I had problems with working of CI, whenever I tried to access the website, I just used to get a text in browser saying ‘No input file specified’ and no html as expected except this text.
Htaccess redirect www to non www. http & https
This article will provide you htaccess rules to redirect a www website to non www. I prefer to make rule regardless of using name of specific domain so no-where in this article I have used domain name. The general sort of solution to make www to non www apache htaccess redirect
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
Non-www to www redirect. http & https in apache htaccess
For a better site optimization and accessibility we might wish to redirect a non-www site to www. For this we have to write a few rules in htaccess file at our apache server. I’m mentioning here code of just 3 lines to achieve non-www to www redirect.
Organizing Codeigniter Controllers into Sub-Directories or Subfolders
While developing large applications, we might wish to organize Controllers into Sub-Directories or Subfolders for our convenient. This article will guide you to smoothly organize the controllers in sub-directory or folder. I’m using Codeigniter version 3.0 here.