Apache Alias指令未按预期工作

时间:2013-09-10 06:02:39

标签: php apache2 rewrite codeigniter-2 mod-alias

我正在尝试将门户网站与我的网站集成。

我的网站:

http://example.com

和我的门户网站:

http://portal.com

现在我想看看我的门户网站:

http://example.com/portal

我的核心apache配置文件的一部分(sites-enabled / website):

<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    ServerName example.com
    DocumentRoot /home/example/WebSite2.0/WebContent
    DirectoryIndex index.php index.html

    <Directory /home/example/WebSite2.0/WebContent>
            Options  +IncludesNOEXEC
            AllowOverride None
            Order allow,deny
            allow from all
            XBitHack On
            AddType text/html .html
            AddHandler server-parsed .html   
    </Directory>

    Alias /portal /home/example/portal/CodeIgniter_2.1.0
    <Directory /home/example/portal/CodeIgniter_2.1.0>
            DirectoryIndex "index.php"
            allow from all
            Options +Indexes
            #Options  FollowSymLinks MultiViews
            Order allow,deny

            RewriteEngine On
            RewriteBase /portal
            #RewriteRule ^test\.html$ test.php 

            RewriteCond $1 !^(index\.php|css|images|robots\.txt)
            RewriteRule ^(.*)$ index.php/$1 [L]

            RewriteCond $1 ^(css|images|js)
            RewriteRule ^(.*)$ $1

    </Directory>
</VirtualHost>

正如您在CodeIgniter上看到我的门户功能;因此 -

 RewriteCond $1 !^(index\.php|css|images|robots\.txt)
 RewriteRule ^(.*)$ index.php/$1 [L]

我的核心apache配置文件的一部分(sites-enabled / portal):

<VirtualHost *:443>
    ServerAdmin webmaster@localhost
    ServerName portal.com
    ServerAlias www.portal.com
    DocumentRoot /home/example/portal/CodeIgniter_2.1.0
    DirectoryIndex "index.php"
    SSLEngine On
    SSLCertificateFile "ssl/portal.com.crt"
    SSLCertificateKeyFile "ssl/portal.com.key"
    <Directory /home/example/portal/CodeIgniter_2.1.0>
            Options  FollowSymLinks MultiViews
            AllowOverride All
            Order allow,deny
            allow from all
            Header unset Server
            ServerSignature Off
    </Directory>
</VirtualHost>

现在真正的问题是,当我打开http://example.com/portal时,浏览器正在寻找DocumentRoot而不是Alias中的图片。

e.g。来自门户网站的图片,

<img src="/images/example.png" style="margin-left:30px;height:50px;">

apache错误日志说 -

File does not exist: /home/example/WebSite2.0/WebContent/images/example.png

我不想更改我的代码。我只是希望从apache配置文件本身获得这个功能。请帮我这样做。

1 个答案:

答案 0 :(得分:1)

RewriteBase /portal要求网址应以/portal开头。所以:

RewriteCond $1 !^(index\.php|css|images|robots\.txt)

不会被击中。

<img src="/images/example.png" style="margin-left:30px;height:50px;">

将尝试从DocumentRoot搜索文件。

UPDATE1

对于RewriteBase /portalexample.com/portal/images会点击重写规则,但example.com/images不会,所以:

 <img src="/images/example.png" style="margin-left:30px;height:50px;">

应该是:

 <img src="/portal/images/example.png" style="margin-left:30px;height:50px;">

UPDATE2

这是@Hussain Tamboli自己给出的答案:

RewriteRule /(images|js|css)/(.+)\.(.+)$ /portal/$1/$2.$3 [PT].

/images/Invoice.png将重写为/portal/images/Invoice.png