Archive for the Category »SEO Optimization «

Today I found out about a plugin for wordpress call the SEO super comment which can help in improving the blog ranking by altering the comment URL structure virtually, thanks to fellow whitehatblackbelt member.
Later I found out the author is Vladimir Prelovac and he had made a couple of very nice plugins and I have downloaded them for my wordpress.

Here are a few which I think very useful

1. SEO automatic Link
2. SEO Super Comment
3. Snazzy archive

13
Oct

Today, I have learned about how to make my blog more SEO friendly. Being SEO friendly is important to be found on the internet. Ugly URl that end with ?p=34 is not good for google crawlability. This url is called dynamic URL and need to be converted to static page.
What I did was, when posting a new post, above it, there’s a small area where it called Permalinks. Click edit, and you will reach a place where you can specify what format of the directory structure a post is saved. I picked year,month, and posting title as the format. All the posts will automatically follow the new structure.That should have done the job.

But I encountered problem with the .htaccess where I need to give the access by allowing mod_rewrite. Simply create a file with name as .htaccess and the content is as below:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

Save it to the root / (some hosting will be at /public_html/ )and it’s done. Click update post or publish post, and all the posts will be automatically follow the new structure.

I found out another is , goto the Left Panel, locate Settings, and under it there is a Permalink, click that, and you will be brought to the same place for setting the format of the structure you want.