我有一个 yii 网站。但我想让 django 为具有 url 路径 www.mysite.com/django 或子域 www.django.mysite.com 的页面提供服务。服务器安装了 fastcgi,它是一个共享服务器。
我的 yii .htaccess 文件看起来像这样(它在 www 文件夹中),因为我删除了 index.php 以获得干净的 url
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