hi
,
I have the following url "
http://localhost:8080/mycontext/faces/index.jsp".
i want (if possible) to romve the
faces form the above url , to allow the end user to access the website without typing
faces in the url,just http://localhost:8080/mycontext/index.jsp.
in the web.xml , I tried to change the FacesServlet mapping to map to any pages under contextroot, but this didn't work. ,
<servlet-mapping>
<servlet-name>FacesServlet</servlet-name>
<url-pattern>/mycontext/*</url-pattern>
</servlet-mapping>
any idea?.
thanks in advance.