Services (5)

    Children categories

    Development

    Development (2)

    [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!

    View items...

    Joomla Services (1)

    We have been working with joomla for over a decade and provide a complete range of services from installation, to upgrade to development.

    View items...
    Tuesday, 14 November 2017 09:57

    Top 25 Pay Per Click Display Network

    Written by
    • CPAlead

      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.

    • Lead Bit

      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.

    • Add content here 3

    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.

    1. Locate the following line within your htaccess file

    RewriteEngine On

    2. To redirect non-www to www, add this code below it:

    RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]
    RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301]

    3. To redirect www to non-www, add this code after RewriteEngine On:

    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.

    Friday, 29 January 2016 15:14

    Joomla Services

    Written by
    • Joomla for Schools

      Build Joomla Extensions for schools sites.

    • Social Networking Apps.

      Build apps for social networking sites.

    • PSD to Joomla Conversion

      We churn out Industry's best Joomla 2.5 and Joomla 3.x templates.

    • Joomla Maintenance Packages

      Joomla Maintenance Packages to maintain and manage your Joomla websites.

    • Android apps for Joomla Website

      Build android app for Joomla Website and Joomla Extensions.

    • Build Custom Joomla extensions

      Need a Custom Joomla Extension? Ask us.

    • Build a Joomla Website

      Get a high-end Joomla website done by WDMtech

    • Joomla extensions customizations

      Customize your third party Joomla extensions

    • Custom Joomla components

      Build Custom Components as per Clients requirment

    • Build a Joomla Mobile Site

      Joomla Mobile Website Development.

    • Facebook apps for Joomla Website

      Build Facebook apps for Joomla Websites.

    • Upgrade Joomla 1.5 to Joomla 2.5 and 3.x

      We Upgrade Joomla 1.5 to Joomla 2.5 and 3.x

    • Ecommerce extension customization

      We Build and Customized Ecommerce extension

    Friday, 20 November 2015 16:30

    CSS media queries breakpoints standard sizes

    Written by

    media queries for common device breakpoints

    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.

    Thursday, 12 November 2015 11:19

    htaccess 301 with folder or file exception

    Written by

    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.