我使用代理在apache上运行我的spring启动应用程序。它也通过安全连接运行。 Apache virtualhost配置是:
ProxyPreserveHost On
ProxyPass / https://localhost:8443/
ProxyPassReverse / https://localhost:8443/
我想在文件夹/ gettweets中为静态内容提供服务,这样当用户访问https://myurl/gettweet时,将调用索引php文件。
我如何做到这一点?
答案 0 :(得分:0)
使用带有P标志的mod_rewrite:
RewriteEngine on
RewriteRule ^gettweet/.*$ /gettweet/index.php [L]
RewriteRule ^(.*)$ https://localhost:8443/$1 [L,P,QSA]