[yt_icon icon="icon: code" url="" size="20" background="#eeeeee" color="#8532f3" radius="3px" padding="15px" margin="" border="0px none #444444" ]
This category is dedicated to developers. We display articles and code snipets which we encounter and/or write. It is all about sharing knowledge!
We have been working with joomla for over a decade and provide a complete range of services from installation, to upgrade to development.
CPAlead provides banner ads, pop under ads, interstitial tools, content lockers, PPC offers, CPA offers and more to affiliate marketers. CPAlead is known for paying guaranteed EPCs of 20 cents or greater in USA.
We are cool and high perspective international AN working on a CPA standard. 24/7 technical and customer support, variety of different offers, flexible options, weekly payment on Tuesday will do your job pleasant and efficient.
Technically speaking, both www and non-www are 2 different websites and as such may be penalised by search engines for duplicated content. From an SEO perspective it is always best practice to redirect your non-www site URL to www or your wwww. to your non-www version.
Our site www.accrodigital.com, for example, has a redirection from non-www (http://accrodigital.com) to www (http://www.accrodigital.com). In other, everytime anyone type http://accrodigital.com will be redirected to www.accrodigital.com. Note the "www" in the second URL.
Technically, the non-www version and the www version are two different domains. So redirecting one to the other improves our SEO. Google and other search engines won't have to worry about two different domains.
This tutorial will show you how to redirect your whole website to either non-www or www.
Please note that you will need to find and access your htaccess file. It is located at the root of your website server.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301]
RewriteCond %{HTTP_HOST} ^www.yourdomain.com [NC]
RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301]
I hope that this tutorial will help you. Please leave your comment below if any.
Build Joomla Extensions for schools sites.
Build apps for social networking sites.
We churn out Industry's best Joomla 2.5 and Joomla 3.x templates.
Joomla Maintenance Packages to maintain and manage your Joomla websites.
Build android app for Joomla Website and Joomla Extensions.
Need a Custom Joomla Extension? Ask us.
Get a high-end Joomla website done by WDMtech
Customize your third party Joomla extensions
Build Custom Components as per Clients requirment
Joomla Mobile Website Development.
Build Facebook apps for Joomla Websites.
We Upgrade Joomla 1.5 to Joomla 2.5 and 3.x
We Build and Customized Ecommerce extension
The @media query is 1/3 of the recipe for responsive design. It is the key ingredient that, in it's simplest form, allows specified CSS to be applied depending on the device and whether it matches the media query criteria.
I like to develop my websites in a live environment which saves time when it comes to switching it to the world. It also provides an excellent platform for error checks and live behaviour. In order to be able to develop online and on my servers without having to work on my local host, I create a directory which I name say "dev" and which I exclude from search engine crawling in my robot.text file.
I however came across a challenge with one of my domain which has a 301 redirect. How could I access my newly created folder since when trying to access it I would be redirected. Here is the exception rule and code which allowed me to overcome the challenge:
RewriteCond %{REQUEST_URI}!^/my-folder/
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
The above code needs to be added to your .htaccess file. The code permanently redirects with a 301 redirect all traffic to the site to http://www.newdomain.com, except requests to resources in the /my-folder directories. The user are redirected to the equivalent of the page they requested by using the (.*) capture group and then including $1 in the new URL.