views:

56

answers:

3

I have a website which is built on ASP.NET MVC and hosted on Windows server. Now I wanted to add a blog specifically wordpress blog. I wanted to add this blog at this particular address http://thedomain.com/blog (not like subdomain http://blog.thedomain.com)

I have heard from someone it is good for search engines to host under http://thedomain.com/blog rather than http://blog.thedomain.com

1) Is this right?

I have another provider (linux based) where usually I host my Wordpress blogs and I can add unlimited subdomains. I would like to install the above said blog here with this provider rather than my windows based server (where my MVC app resides).

2) how can I host my Wordpress blog at Linux box but still be able to access it using http://thedomain.com/blog ?

Please help me how to do this or just throw some ideas.

I know I can install Wordpress on Windows server as well but due to the cost concerns I wanted to host this on Linux box.

A: 

Short answer: you can't. You could do some iframe trickery or some kind of rewrite scheme, but you will loose a lot of functionality and set yourself up for trouble. Sorry...

David Radcliffe
@David Radcliffe What? Of course you could. What technical limitations are there? PHP works fine, albeit a little slow, from IIS.
jfar
Yes of course you could run it on the windows box. The question was: can the blog be hosted on the linux box while the main website be on the windows box.
David Radcliffe
@David Radcliffe Well I see two questions there, but anyway, why wouldn't a simple redirect suffice? This seems entirely possible.
jfar
Well yes, but then your published blog url (domain.com/blog) will not match the actual url (blog.domain.com) and then you're pretty much back at hosting it on linux. Search engines will show it under the subdomain anyway.
David Radcliffe
+1  A: 

What's good for search engines is to have a good blog with relevant, updated content that people actually link to. The domain name stuff is a red herring pushed by folks who can't actually create relevant, updated content so resort to gaming systems to make sure people read their irrelevant stale site.

Damn, that was a rant. Anyhow, if you must host at /blog, there really isn't any reason why you can't just add a new Application to your site and host the blog there. It might require a bit of config-monkeying but it will work at the end of the day.

Wyatt Barnett
Thanks Wyatt. Are telling me to install Wordpress on windows, am I right?
Naren
I think you are wrong in one sense. According to the following site "you’d like to build the equity of one web site or entity, I suggest using a subfolder. If you’d like to build an entire new entity with its own equity, launch a subdomain."http://www.searchenginejournal.com/subdomains-or-subfolders-which-are-better-for-seo/6849/Here in mycase I want to build just one entity so it is better to have it in a subfolder rather than subdomain.
Naren
Yup, go ahead and set it up. Its really disturbingly easy these days -- http://www.beingmanan.com/wp/2009/07/install-wordpress-on-pc-with-web-platform-installer/
Wyatt Barnett
A: 

For the First question:

99.9% of the time, if a subfolder will work, it's the best choice for all parties. Subfolders have all the flexibility of subdomains (the content CAN, if necessary, be hosted on a unique server or completley unique IP address through post-firewall load balancing) and none of the drawbacks. Subfolder content will contribute directly to how search engines (and users for that matter) view the domain as a whole. The link in to subfolders are considered relevant to the domain as a whole, and while this rule applies for many subdomains, the exceptions make it worth avoiding them.

For the second one:

There is no elegant way to do this. So go for WordPress on same Windows Server

Thanks Guys for your help.

Cheers,

Naren

Naren
It's best to accept the one of the answers provided instead of answering your own question. This will help your 0% accept rate too.
David Radcliffe