0

I'm just starting out on a WORA project: Front end: HTML5 / JSON; Back end: .NET MVC API.

I'm looking for some pointers on how to develop so that the site has SEO friendly URLS.

Obviously this is fine if the front end is .NET as you can use Global.ASAX or Rewrite in web.config, but if the front end is simple HTML5 and JSON to allow for deployment as mobile web and native apps then the structure has to be generated in the javascript or HTML.

Are there any tutorials/articles out there on how to do this?

Thanks in advance, Ben

Ben Drury
  • 1,356
  • 2
  • 16
  • 34

1 Answers1

1

Do you have access to the .htaccess files? (No pun intended).

You can use rewrite rules there too for clean urls. One example is here.

Ratul Saha
  • 402
  • 2
  • 9
  • Don't know yet. Am still developing in localhost. Up til know I've always used .NET functionality for redirects, but in moving to JSON and HTML5 just wanted some pointers for alternatives. Will look into .htaccess option. Thanks. – Ben Drury Jul 02 '12 at 17:57