0

我有一个 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

4

1 回答 1

0

共享服务器是指付费主机吗?真正的问题是您是否可以访问 apache conf,如果没有,您是否可以礼貌地要求主机为您插入 django 的 VirtualHost。

于 2013-01-19T08:00:10.187 回答