I've got a NopCommerce site (ASP.NET MVC
) and I'm trying to add a Wordpress blog as a subfolder of the main site.
The installation of Wordpress was fine, all config files have been created and the blog works fine if you browser through it.
However, I now want to setup pretty permalinks by using the name of the post.
Normally when you setup permalinks, it generates either a .htaccess
file for Apache or a web.config
for Windows IIS7 Url Rewrites.
When I try and save the permalink settings, it sits there trying to load and eventually times out.
I'm guessing that because ASP.NET MVC uses Routes
, the Wordpress site doesn't know what to setup.
Can anyone offer me guidance on how I can get the permalinks setup? Do I need to setup a Route
on my MVC site perhaps?