0
我對PHP/Apache的網站建設,我想插入一個div區域內的NodeJS應用程序,我已經在iframe中已經顯示出它像這樣:的NodeJS
<iframe src="http://example.com:8080"></iframe>
我試了ProxyPass & ProxyPassReverse下面的代碼,但它只重定向到我的nodeJs應用程序沒有我的PHP站點在Apache配置文件/etc/apache2/sites-available/exemple.conf。
ProxyRequests off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
<Location />
ProxyPass http://localhost:8080/
ProxyPassReverse http://localhost:8080/
</Location>
我該如何做到這一點。