0

我正在尝试设置我的 linode 帐户以从服务器的 IP 地址为 zend 框架 Web 应用程序提供服务。如果我从像 www.somesite.com/controller/action 这样的解析域名提供服务,但不是从 182.324.34.2/controller/action 提供服务,一切正常。我认为这与zend框架如何处理路由有关?我的问题是在域名链接到服务器 ip 之前运行应用程序的最佳方式是什么。这是我可以用 .htaccess 或 apache 配置处理的东西,还是需要通过 zend 框架处理的东西。

编辑:我没有使用主机名路由。

我的 .htaccess 是

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* index.php

我的虚拟主机

<VirtualHost *:80>
ServerAdmin webmaster@localhost

DocumentRoot /var/www/core/public
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>
<Directory /var/www/core/public>
    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>

我的 zend 框架配置非常标准,让我知道哪些部分会有所帮助。

4

1 回答 1

0

假设您在 Ubuntu 服务器上,您可能需要简单地禁用默认虚拟主机:

sudo a2dissite default
sudo /etc/init.d/apache2 reload
于 2012-03-29T07:20:34.133 回答