簡體   English   中英

如何使用apache提供靜態文件?

[英]How to serve static files using apache?

我已經用Tomcat配置了Apache 2.2 Web服務器。 我希望使用apache來提供Web應用程序的靜態文件。 我在httpd.conf中創建了虛擬主機條目

<VirtualHost *:8080>
Alias webcommon_alias C:/webcommon_bk

JkMountFile D:/xampp/apache/conf/myexample.net.properties
ServerName myexample.net
ErrorLog logs/myexample.net-error_log
CustomLog logs/myexample.net-access_log common

<Directory C:/webcommon_bk>
    Order allow,deny
    Allow from all
    RewriteEngine On
    RewriteBase /webcommon/
    RewriteRule ((.*)\.(js|css|html|gif|png)$) webcommon_alias/$1
</Directory>    

</VirtualHost>

但是,當我在瀏覽器http://myexample.net:8080/webcommon/img/aboutBox.png中獲取此文件時,找不到對象! 在此服務器上找不到請求的URL。

嘗試以下方法:

<VirtualHost *:8080>
Alias /webcommon C:/webcommon_bk

JkMountFile D:/xampp/apache/conf/myexample.net.properties
ServerName myexample.net
ErrorLog logs/myexample.net-error_log
CustomLog logs/myexample.net-access_log common

<Directory C:/webcommon_bk>
    Order allow,deny
    Allow from all
    RewriteEngine On
    RewriteRule ((.*)\.(js|css|html|gif|png)$) /webcommon/$1.$2
</Directory>    

</VirtualHost>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM