Sharepoint WSP Solutions and Page URL
I was playing around with wsp solutions and I got a question about how to access an aspx file that is on the file system from a sharepoint web app. For example, here's my visual preview of a research studio ...
alt text http://abbeylegal.com/downloads/alp%20solution%20image.jpg
You can see the aspx file Ive generated when I view this file in my sharepoint web app, the url is
http://example.org/alplogin.aspx
What if I want this page to be accessible via a deeper url ...
eg. http://example.org/adminstration/servererrrors/alplogin.aspx
I need to create these dummy folders using my visual studio solution to get a one-to-one mapping on the deeper sharepoint web app url I want?
a source to share
The "module" element in the function element manifest should describe this. Also, if you want your files to be expanded "deeper", you probably want to make sure that your function is limited to "Internet". Then activating your feature for a specific SharePoint site will cause your file to be deployed as a page on that site.
An MSDN page called How To Do It: File Submission covers this scenario I think.
a source to share