Simply Ideas Review

A few days ago, I came across Simply Ideas
, a web solutions company. What is Simply Ideas? Simply Ideas is a digital marketing agency specializing in performance based marketing, lead generation, and search engine optimization.

I tried to google some reviews about it, I haven’t found anything specific so I decided to start with testing their support.

I have emailed a few questions and a person named Adam replied. From the looks, they are very professional. It seems that it’s a very new company.

Unfortunately, on the site there is nothing related to the prices.

However, they have an impressive portfolio. Those sites they claim to have designed look very clean and professional. I have a new project going on next month so I’m going to order some SEO from them and keep you updated!

301 Redirect SE Friendly - simple

Ok today I was playing with mod_rewrite a bit. I needed this for redirecting the phpmentor.info domain to phpmentor.info/index.html as my host says there’s a problem and 301 redirect is the only thing that can help.

Well, here’s the code I used and worked:

Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.phpmentor.info/index.html $1 [R=301,L]

Btw, this code must be placed into your .htaccess file  :)

Good luck, hope it’ll help you like it helped me!