Forum Moderators: goodroi
Presently I'm linking to the index page in /program/ by using another url which redirects to the index page. Is this adviseable, or should I link directly to the index page from my menus?
Is there any other way to load another page automatically other than a redirect, frame, iframe?
Should i be making any entries in .htaccess? Anything else to consider?
Sorry if some of the questions are not exactly about robots.txt but they're all related to my main question.
If you disallow: /php/
then all sub-folders below it will also be disallowed.
The alternative could be to disallow certain files only
disallow: /php/s
will disallow all files and sub-folders within /php/ that begin with the letter 's'
or
disallow: /php/ind would do the same but only files and sub-folders beginning with 'ind' but will allow anything in /php/ that does not begin with 'ind'
You may be able to work around your problem using this 'prefix' tecnique.