. htaccess kullanan 2 alanda bir klasörü paylaşmak

2 Cevap php

Ben 2 alt etki var

c: \ wamp \ www \ websiteâ \ - http://websiteA/

c: \ wamp \ www \ websiteB \ - http://websiteB/

websiteâ resim depolamak için bir klasör var içinde

c: \ wamp \ www \ websiteâ fotoğrafları \ \

websiteB websiteB en html websiteâ fotoğraf erişmek istediğiniz sipariş ben gibi bağlantı yapmak zorunda

url: http://websiteB/1.html

<img src="http://websiteA/photos/1.jpg" />

Sorun iki alanı tek bir makine içinde olduğundan ben, websiteB yılında websiteâ etki maruz istemiyorum. Sanal konak gibi bir şey elde etmek mümkün mü?

Ben de websiteâ için fiziksel yolunu maruz istemiyorum, ve verileri çoğaltmak istemiyorum.

Ben websiteB şey yapmak. Htaccess düşünüyorum?

Amacım, websiteB html o kendi alanı ile fotoğrafı görüntülemek mümkün

<img src="http://websiteB/photos/1.jpg" />

Edit: I think the question ask it this way is better in order user request http://websiteB/photo/1.jpg, the backend actually request the file from http://websiteA/photo/1.jpg, any idea do from .htaccess?

Htaccess yeni duyuyorum, ben başarı değil. Htaccess çalıştı, ancak

RewriteEngine On
RewriteRule http://websiteA/photos/1.jpg http://websiteB/photos/1.jpg[NC,L]

Birçok Teşekkürler!

PS: Çözüm ya windows / linux ortamı çalışmak gerekir.

2 Cevap

I think I got my solution, not sure is perfect or not inside .htaccess for websiteB

RewriteEngine On
RewriteBase /websiteB/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^photos/(.*)$ http://websiteA/$1 [L]

the thing I found it not so perfect is when I enter http://websiteB/photos/1.jpg, it will redirect to http://websiteA/photos/1.jpg

ancak HTML içinde, ben yazın

<img src="http://websiteB/photos/1.jpg" />

Bu mümkün http://websiteA/photos/1.jpg URL'yi değiştirmek olmadan yüklemek için. Bu benim için iyi bak bulunuyor.

Köpek geliyor mu? Eğer sebep temin edebilir?

Ne muhtemelen aradığınız bir proxy. Google Check it out