In a follow up to last night's post on setting up Django on WHM server, lets say you have a Django app you want to use on the main site, but you have additional code or apps(like a php forum) that you want to also use. After a little digging I beleive I've found the ideal configuration for this. There are 2 parts: Set up your django app's alias on a path other than the root of the site. In my setup I've put the django app on the /site path. Modify your .htaccess in the root of the web site as follows: # BEGIN Django RewriteEngine On RewriteBase / RewriteRule "^$" "/site/$1" [QSA,PT,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule "^(.*)$" "/site/$1" [QSA,PT,L] # END Django To break this down: We're applying this to all files from th root up: RewriteBase / Replace an empty path with the pat...