yiiサイトがあります。しかし、URLパスがwww.mysite.com/djangoまたはサブドメインwww.django.mysite.comのページを提供するためにdjangoが必要です。サーバーにはfastcgiがインストールされており、共有サーバーです。
クリーンURLのindex.phpを削除したため、yiiの.htaccessファイルは次のようになります(wwwフォルダーにあります)。
Options +FollowSymLinks
` IndexIgnore */*
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php