在这里,我遇到了一个小问题。我有一个在 Yii 框架中构建的网站。它使用 http 协议运行没有任何问题(url 中的 index.php 是隐藏的,所有 url 都可以正常工作)。我已经在亚马逊 ec2 服务中托管了这个。我的 .htaccess 文件中有以下几行
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
但是当我使用 https 浏览网站时(注意:我已经全部配置好了),主页正常加载。但其他 url 不起作用,需要添加 /index.php/。我在这里想念什么?
为答案而死。
提前致谢。