Here is what I would do:
- Make the site work somewhat with javascript. if you use ajax everywhere, then make sure the links have the href specified in the url you will be entering. This may cause your site to work "somewhat" without javascript.
- Add some .htaccess redirects for bots. redirect them to some normal place where they can go to some links and index some things.
Your current site is probably very poor in terms of search and SEO.
edit : ok, i see your problem. Scanners are redirected after viewing the material inside noscript.
what about this solution then:
if you have only one page with noscript, then you can add some rewrite rules to your apache configuration, which will show a different version of the page for bots, and this version will not contain the noscript tag. eg:
RewriteCond %{HTTP_USER_AGENT} Googlebot [OR] RewriteCond %{HTTP_USER_AGENT} msnbot [OR] RewriteCond %{HTTP_USER_AGENT} Slurp RewriteRule ^.*$ nometa.html [L]
Also, what technology are you using? do you use any server languages, do you even use apache? I assumed that you have apache + html, but not server side. If you have something on the server side, then this is easier.
source share