I am changing a site form static HTML & CGI to drupal 6, I have some CGI scripts that I still need to run, but drupal gets called with Apache rewriting. Is there any way to get drupal to either *not* handle URLs of the form /cgi-bin/* or get it to somehow execute my (perl) scripts?

Comments

gforce301’s picture

The .htaccess file is what directs page calls to drupal and that is only if there is no physical file for apache to serve. So your cgi perl scripts will still run if hit directly by a browser.

mikel1’s picture

Great. Thanks!