Hi. I have a jackrabbit repository and can get a access as http://some_address:8080/jackrabbit-webapp-2.0.0/repository/default
I want to reduce this long path and installed apache as proxy ProxyRequests Off ProxyPreserveHost on RewriteEngine on RewriteRule ^/files(.*) http://same_address:8080/jackrabbit-webapp-2.0.0/repository/default$1 [P] RewriteRule ^/(.*) http://same_address:8080/$1 [L,P] How I can go in the repository as http://same_address/files Then I mounted the repository as network drive in Windows 7. net use Z: "http://same_address/files" /USER:same same Then I go to Z drive and can read and write files. But if I want move or change name of file then I have error Z:\Music Videos>move test test1 A device attached to the system is not functioning. 0 file(s) moved. Z:\Music Videos>copy test test1 1 file(s) copied. Z:\Music Videos>del test1 Why this behavior may be? -- Nothing in life is to be feared. It is only to be understood.
