我有点陷入困境,并确信这是一个微不足道的问题,但似乎无法找到正确的解决方案。
我有一个本地开发服务器运行apache2 w / mod_ssl& mod_rewrite的。 我创建了一个自签名证书,并为*:443添加了相应的虚拟主机指令。 我似乎遇到的问题是,现在我有SSL方面正常工作。当我正确地说,我的意思是我可以转到我的网站的https网址(例如https://dev.mysite/),而无需添加index.php,它就可以将index.php提升。
但是当我去网站的常规http网址时,我必须输入index.php来查看该网站。 (例如http://dev.mysite/index.php)
我尝试将一个DirectoryIndex指令添加到*:80块,但这似乎仍无法正常工作。
如果有帮助的话,下面是虚拟主机文件内容;
ServerName dev.mysite
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/vhosts/bsah_dev/mysite
<Directory />
DirectoryIndex index.php
Options Indexes FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/vhosts/bsah_dev/mysite/>
DirectoryIndex index.html index.htm index.php
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
<VirtualHost *:443>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/vhosts/bsah_dev/mysite
SSLEngine On
<Directory /var/www/vhosts/bsah_dev/mysite>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !^on$ [NC]
RewriteRule . https://%{HTTP_HOST}%{REQUEST_URI} [L]
</IfModule>
</Directory>
SSLOptions +StrictRequire
SSLCertificateFile /etc/apache2/ssl.crt/server.crt
SSLCertificateKeyFile /etc/apache2/ssl.key/server.key
</VirtualHost>
答案 0 :(得分:2)
对您的配置提出一些意见,这可能会帮助您解决此问题:
<Directory />
DirectoryIndex index.php
Options Indexes FollowSymLinks
AllowOverride None
</Directory>
这很不寻常:通常,您不会授予对根目录(机器的根目录,而不是文档根目录)的任何访问权限。请参阅Directory documentation,建议使用此:
<Directory />
Order Deny,Allow
Deny from All
</Directory>
这应该在您的配置中按预期工作:
<Directory /var/www/vhosts/bsah_dev/mysite/>
DirectoryIndex index.html index.htm index.php
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
(据说,index.php
只会在首先找不到index.html
或index.htm
的情况下使用。)
DirectoryIndex documentation表示它可以放在“服务器配置,虚拟主机,目录,.htaccess”中(参见“上下文”)。它也适用于Directory
指令(这些值将覆盖您在VirtualHost
或服务器级别找到的值。)
此规则在HTTPS部分中没有意义:
<Directory /var/www/vhosts/bsah_dev/mysite>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !^on$ [NC]
RewriteRule . https://%{HTTP_HOST}%{REQUEST_URI} [L]
</IfModule>
</Directory>
您正在使用重写规则重定向到等效的https://
网址。但是,此规则位于启用了SSL的部分,因此您将从https://
重定向到https://
,而不是从http://
重定向。