Ssl Yii模块的Https问题

Ssl Yii模块的Https问题,ssl,module,https,apache2,yii,Ssl,Module,Https,Apache2,Yii,我有一个模块在Yii中启动并运行。我可以在http://url/module没有任何问题。然而,我无法获得与工作的安全连接 当我尝试使用https(https://url)。当我尝试访问模块中的任何内容时 Not Found The requested URL /module was not found on this server. Apache/2.2.17 (Ubuntu) Server at url Port 443 我在这里或谷歌上都找不到任何线索。任何帮助都会很好 已编辑 根据l

我有一个模块在Yii中启动并运行。我可以在
http://url/module
没有任何问题。然而,我无法获得与工作的安全连接

当我尝试使用https(
https://url
)。当我尝试访问模块中的任何内容时

Not Found

The requested URL /module was not found on this server.
Apache/2.2.17 (Ubuntu) Server at url Port 443
我在这里或谷歌上都找不到任何线索。任何帮助都会很好

已编辑 根据ldg的建议,我更新了ssl配置文件。下面是Ubuntu 11.04的详细信息

/etc/apache2/可用站点/默认ssl

改变

...
< Directory /var/www/ >
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    allow from all
< /Directory >
...


检查Apache的ssl配置文件,查看是否有“AllowOverride”条目。如果设置为“无”,则更改为“全部”(或者您将其设置为非ssl)


ssl中的所有URL在主站点上都有效吗?

否。只有主页。现在查看ssl配置。花了一点时间来跟踪ssl配置,但这样做了。谢谢
...
< Directory /var/www/ >
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    allow from all
< /Directory >
...