No folder WebContent eu criei outro chamado de Pages e coloquei o arquivo index.xhtml dentro dele. Configurei o meu DD para chamar essa página e não estou conseguindo. O Container só monta a URL até o projeto, ele não entra nas pastas do projeto. Meu projeto se chama: Programinhas_Web. A URL só vem até aqui:
http://localhost:8080/Programinhas_Web/
e não
http://localhost:8080/Programinhas_Web/WebContent/Pages/index.jsf
Eis meu DD
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<display-name>Programinhas_Web</display-name>
<context-param>
<param-name>javax.faces.CONFIG_FILES</param-name>
<param-value>/WEB-INF/faces-config.xml</param-value>
</context-param>
<welcome-file-list>
<welcome-file>/WebContent/Pages/index.jsf</welcome-file> //já coloquei sem a barra inicial e já fiz sem o WebContent e não funcionou
</welcome-file-list>
<servlet>
<servlet-name>Faces Config</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Faces Config</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
</web-app>
Que tenho que fazer?