How can I allow search engines to index my invite only website in ruby on rails?
Posted
by
tstyle
on Pro Webmasters
See other posts from Pro Webmasters
or by tstyle
Published on 2011-06-23T01:53:06Z
Indexed on
2011/06/23
16:32 UTC
Read the original article
Hit count: 177
I have a ruby on rails website that will be in invite-only mode for the next couple of months. Currently I have it set up so visits to any page performs an authentication:
before_filter :authenticate, :except => [:beta] //authenticate checks for a logged in user
But the webpage has a lot of content that I would like to see indexed by search engines, and I was wondering if there's an easy way to allow crawlers to do their work? I am not very knowledgable on SEO related stuff at all, so sorry if this is an suboptimal way to phrase the question.
© Pro Webmasters or respective owner