I have a Struts application and I build by form
<html:form action="companyProvAdd"> ....</html:form>
which renders the html as
<form name="companyProvAddForm" method="post" action="/ebig/companyProvAdd.do"> ...</form>
Is there a way to have the post go to a relative URL?
<form name="companyProvAddForm" method="post" action="companyProvAdd.do"> ...</form>