我们的系统管理员刚刚离开了我正在进行的项目,我一直在努力配置我们的生产服务器以匹配TEST(一切正常)。在服务器配置方面我不是很了解,而且我已经陷入了许多死胡同,所以我非常感谢能提供的任何帮助。
我通过将TEST / var / www复制到PROD,将代码从TEST提升为PROD。因此,PROD中的应用程序现在位于PROD / var / www / www中。 我现在可以在Production(my.production.com/www)上访问应用程序的登录页面,但我无法访问var / www / www /的子目录中的任何文件。我一直收到404 Not Found错误。
我已经复制了配置该网站从测试到正式版(称为“realto”的文件),并已运行到a2ensite创建符号链接到启用站点文件夹,但我仍然得到404错误的生产。< / p>
任何人都可以告诉我可能是什么问题,或者指出我正确的方向?
编辑:我已经在下面提供了httpd.conf,ports.conf和站点配置文件的文本。
的httpd.conf:
ServerName my.server.com
ServerSignature Off
ServerTokens Prod
<Directory />
Order Deny,Allow
Deny from all
Options None
AllowOverride None
</Directory>
<DirectoryMatch /var/www/*>
Order Allow,Deny
Allow from all
AllowOverride All
Options None
</DirectoryMatch>
<DirectoryMatch phpmyadmin>
Order Allow,Deny
Allow from all
Options None
</DirectoryMatch>
网站配置文件:
<VirtualHost *:80>
ServerAdmin xxx@xxxxxxxx.xxx
DocumentRoot /var/www/www
<Directory />
#Options FollowSymLinks
#AllowOverride None
Order Deny,Allow
Deny from All
</Directory>
<Directory /var/www/>
#RewriteEngine On
#RewriteBase /
#RewriteCond %{REQUEST_FILENAME} -s [OR]
#RewriteCond %{REQUEST_FILENAME} -l [OR]
#RewriteCond %{REQUEST_FILENAME} -d
#RewriteRule ^.*$ - [NC,L]
#RewriteRule ^.*$ index.php [NC,L]
Order Allow,Deny
Allow from all
Options -Indexes FollowSymLinks MultiViews
AllowOverride All
</Directory>
<Directory /var/www/www/application/configs/>
<Files ~ "\.ini$">
Deny from All
</Files>
</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>
ports.conf:
# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default
# This is also true if you have upgraded from before 2.2.9-3 (i.e. from
# Debian etch). See /usr/share/doc/apache2.2-common/NEWS.Debian.gz and
# README.Debian.gz
NameVirtualHost *:80
Listen 80
<IfModule mod_ssl.c>
# If you add NameVirtualHost *:443 here, you will also have to change
# the VirtualHost statement in /etc/apache2/sites-available/default-ssl
# to <VirtualHost *:443>
# Server Name Indication for SSL named virtual hosts is currently not
# supported by MSIE on Windows XP.
Listen 443
</IfModule>
<IfModule mod_gnutls.c>
Listen 443
</IfModule>
答案 0 :(得分:0)
要做的第一件事是使DocumentRoot和条目匹配。
DocumentRoot /var/www/www
<Directory /var/www/www>
#RewriteEngine On
#RewriteBase /
#RewriteCond %{REQUEST_FILENAME} -s [OR]
#RewriteCond %{REQUEST_FILENAME} -l [OR]
#RewriteCond %{REQUEST_FILENAME} -d
#RewriteRule ^.*$ - [NC,L]
#RewriteRule ^.*$ index.php [NC,L]
Order Allow,Deny
Allow from all
Options -Indexes FollowSymLinks MultiViews
AllowOverride All
</Directory>
使用此DocumentRoot,访问您的站点将提供/ var / www / www中的内容。这意味着访问http://example.com/www实际上会在/ var / www / www / www中查找文件。
现在DocumentRoot和Directory指令匹配,你真的想要注释掉所有的mod_rewrite规则吗?就像现在一样,在请求/ var / www / www中实际不存在的任何文件时,您将获得404。如果您的应用需要将请求路由到index.php,则需要取消注释这些行。 (我猜他们可能会被评论出来进行测试,但以防万一...)
作为旁注,将来我会建议一个不那么令人困惑的docroot路径。有时很难看到重复的单词/字符,因此用较少重复的东西识别拼写错误会更容易。
我喜欢设置我的应用程序:
/var/www/example.com/test/htdocs
/var/www/example.com/www/htdocs
通过这种方式,您可以立即了解您所处的环境,而且不会那么令人困惑。