We did this for 2 years with most of the old Dreamweaver site still available after we converted to Drupal.  I very occasionally updated an old page, but mostly to convert to a 301 to the Drupal side. We finally got rid of all the old html pages a few weeks ago, but are still fixing an occasional not found page where someone linked a new page to an old page. There are some cute tricks to 301 html pages to someplace else that doesn&#39;t involve large changes to .htaccess (just one line to run html pages with php in them).<div>
<br></div><div>AddType application/x-httpd-php .html</div><div><br></div><div>then, for example, replace about.html with</div><div><div>&lt;?php </div><div>// Permanent redirection </div><div>header(&quot;HTTP/1.1 301 Moved Permanently&quot;); </div>
<div>header(&quot;Location: <a href="http://www.example.com/aboutus">http://www.example.com/aboutus</a>&quot;); </div><div>exit(); </div><div>?&gt;</div></div><div><br><br><div class="gmail_quote">On Tue, Feb 7, 2012 at 9:43 PM, Gordon Heydon <span dir="ltr">&lt;<a href="mailto:gordon@heydon.com.au">gordon@heydon.com.au</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi<br>
<br>
The easiest method is to just put them into a subdirectories of your<br>
drupal site which he can access.<br>
<br>
Otherwise you will need to write your own handler which will print the<br>
page and then return null to the menu handler so the theme is now<br>
printed. Much like you would if you Wang to return Ajax.<br>
<br>
If you what to do this as a not you will again need to do the same<br>
thing but return provide your own nose view handler.<br>
<br>
Gordon.<br>
<br>
Sent from my iPhone<br>
<div class="HOEnZb"><div class="h5"><br>
On 08/02/2012, at 10:23 AM, John Mitchell &lt;<a href="mailto:mitchelljj98@gmail.com">mitchelljj98@gmail.com</a>&gt; wrote:<br>
<br>
&gt; Drupal 6: How can I create a Drupal &quot;Page&quot; (not a block) without any theme? I do not want this &quot;Page&quot; to include any header / footer / left / right  column and also no content. My understanding is that this isn&#39;t possible but could I create an additional theme for my site which is just completely blank, and apply this to the appropriate pages? We have a salesman that wants to build his own set of pages within Dreamweaver and then I would apply this blank theme against just these pages without impacting the existing theme that is utilized for the other pages.<br>

</div></div><span class="HOEnZb"><font color="#888888">&gt; --<br>
&gt; [ Drupal support list | <a href="http://lists.drupal.org/" target="_blank">http://lists.drupal.org/</a> ]<br>
--<br>
[ Drupal support list | <a href="http://lists.drupal.org/" target="_blank">http://lists.drupal.org/</a> ]<br>
</font></span></blockquote></div><br></div>