简体   繁体   中英

How to serve static files using apache?

I have configured apache 2.2 webserver with tomcat. I want static files of my web application to be served using apache. I made a virtual host entry in 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>

But when i fetch this file in browser http://myexample.net:8080/webcommon/img/aboutBox.png i get Object not found! The requested URL was not found on this server.

Try this instead:

<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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM