Tag Archives: seo

seo_slugs

Extra SEO module

Extra SEO module  can replace:
http://website.com/property/31/en/property_title with:

http://website.com/my-custom-slug.htm

Module is compatible with version >=1.5.3

This module is very server configuration
sensitive so no guarantee that will work on all servers.
But it is tested on https://www.a2hosting.com/refer/59624 and there works fine.

Price: 20 EUR , purchase here

If you are interested for this module please send me message to email: sanljiljan@geniuscript.com

Continue reading

SEO optimizations and removing index.php

How to submit your page on google?

Most simple way is to submit your generated sitemap.xml to google webmaster tools:

https://www.google.com/webmasters/tools

Generated URL example: http://real-estate.iwinter.com.hr/sitemap.xml

Regarding removing index.php:

First of all this doesn’t work on standard localhost, only on real servers!

If you want best seo principles like just content title in URL, without “index.php” in URI, you need to:

Rename “seo.htaccess” file to “.htaccess”.

.htaccess should be placed into your public_html, so root of your web installation, example:

Screenshot_14

In “application/config/config.php” change:

$config[‘index_page’] = ‘index.php';

to

$config[‘index_page’] = ”;

Some hosting providers have many restrictions with *.htaccess files, there is more versions so you can try other versions like seo-v2.htaccess etc…

Regarding hosting providers, this customization is tested on:

a2_hosting_logo

Don’t forget to check out extra seo module: http://iwinter.com.hr/support/?p=4662

Or this hint: http://iwinter.com.hr/support/?p=160

 

 

SEO, How to change URL / URI from ‘property’->’listing’?

Add

$config['listing_uri'] = 'listing';

to cms_config.php

If you want something else like ‘property’->’firma’, then you need additional:

In ‘application\config\routes.php’

After:

$route['listing/(:num)/(:any)/(:any)'] = "property/$1/$2/$3";
$route['listing/(:num)/(:any)'] = "property/$1/$2";

Add also:

$route['firma/(:num)/(:any)/(:any)'] = "property/$1/$2/$3";
$route['firma/(:num)/(:any)'] = "property/$1/$2";