i have simple configuration that enables to do the redirection and rewrite the url but unable to get the include files of the page : all the include files are in sub dir's
i want that every thing will be under users dir for example
http://linuxapp:2222/users/ from http://linux:44444/jsp/app/service/*
for example
/jsp/app/service
index.jsp
img/ < all images in here
app.css
app.js
in the index.jsp i include the files like this:
<link rel="STYLESHEET" type="text/css" href="app.css">
<script language="javascript" type="text/javascript" src="app.js"></script>
my mod_proxy and mod_rewrite config in the httpd.conf
ProxyRequests Off
<Proxy *>
AddDefaultCharset off
Order allow,deny
Allow from all
</Proxy>
ProxyPass /users/ http://linux:44444/jsp/app/service/index.jsp
CustomLog /home/logs/proxy_log common
ProxyPassReverse /users/ http://linux:44444/jsp/app/service/index.jsp
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REMOTE_ADDR} !(.*$)
RewriteRule ^(.*)$ - [C]
RewriteRule ^/jsp(.*)$ /$1 [F,L]
#forbidden for people who tries use directly /jsp*
#this rules are important because otherwise any host can connect to jsp*...
#because request goes through proxy and tomcat gets connections from localhost .
RewriteCond %{REMOTE_ADDR} ^(.*$)|^(.*:33333$)
RewriteRule ^/jsp([^\.gif\.jpg]+)$ /users$1 [R,L] RewriteRule "^/(.*)" "http://linux:44444/$1"; # main rule everything goes via PROXY
RewriteRule ^/jsp(.*).jsp$ /users/ [R,L] RewriteRule "^/(.*)" "http://linux:44444/$1"; [P] # main rule everything goes via PROXY
RewriteLog /home/logs/rewrite.log
RewriteLogLevel 9
UPDATE:
i simplify the code but still i have problem
when i do this i do forword right to the backend server but the problem i can browse to other parts of the back-end server and this i like to DISABLE in the proxy server :
ProxyRequests off
ProxyPreserveHost on
ProxyPass /users/ from http://linux:44444/jsp/app/service
ProxyPassReverse /users/ from http://linux:44444/jsp/app/service
CustomLog /home/Apache/logs/proxy_log common
i tried to add this but this dsent work and it blocks me from getting into /users/ in the proxy server
<Location "/users/">
Order allow,deny
Allow from all
</Location>
update : ok again still the same problem can't load include links....