How to hide _layouts in the URL while accessing an application page

Can we create any friendly URL while accessing any custom application page. I don't want to show _layouts in the URL So how can i mask the URL.

The application pages should be in the _layouts folder (or _admin for application pages for central admin).
You can put pages at friendly urls, but then they should be site pages, which you provision using a "Module" element from Visual Studio. But be aware that then users will be able to modify them using SharePoint designer.
There are methods to achieve this somehow, but you should not do it in sharepoint.

Similar Messages

  • How to hide parameters in the URL ?

    Hi,
    Iam using Reports 6i on web. Now Iam calling report from a report (Drill done report) using SRW.SET_HYPERLINK.
    Iam passing lot of parameters to this detail report.
    When I call the main report the URL looks like:
    http://devreports.wwt.com/dev60cgi/runrep.sh/15369?
    But when I click on the link in this main report for details, the detail report URL looks like this.
    http://devreports.wwt.com/dev60cgi/runrep.sh/15369?emp_detail&p_emp=45&p_job=clerk&p_format=PDF
    Iam hiding userid/passwd@database in the cgicmd.dat file
    I want to hide all the other parameters also like
    the Main report URL :
    http://devreports.wwt.com/dev60cgi/runrep.sh/15369?
    How to do this ?
    Please help me if anybody has the solution.
    Thanks alot.

    Hi Ram,
    Not sure if this is possible.
    However, one workaround might be the following:
    1. Write a javascript that submits the URL using, say a POST method, and does not show the parameters in the URL. You will have to write this javascript code in the "Before Report" Report Escape. For a generic example on how to use javascript in a report, see Metalink Note 125652.1. This note shows javascript to disable the right-click of the mouse on the report output.
    2. Use the Hyperlink peroperty of the report to call this javascript function, eg,
    javascript:myfunction('http://machine:port/reports/rwservlet?report=...+server=...+empno=&empno')
    I am not a javascript expert, so I cannot give you an example of the function, but I hope someone in your team can find out.
    Navneet.

  • How to have ItemId in the URL in JSF based application

    I have a JSF based application and I am using faces-config.xml to navigate and I am using /redirect to navigate form case to case.
    The application lists products and upon selecting one, a product detail is displayed. I would like to have productId as part of the page URL so that URL can be emailed and the receiver can paste the received URL into browser and retrieve the product detail.
    Currently the URL is not rewritten to have session id in it.
    I am not ever sure where to start on this.

    Is this line correct?
    <value>#{param.productId}</value>
    Try it out yourself ;)
    This is clear and helpful. However I don't know how
    to create this URL
    (http://example.com/shop/products.jsf?productId=100)
    in the first place. The URL I have is in the form of
    http://example.com/shop/products.faces.
    Is adding '?productId=100' to the URL something
    configurable or it has to be done programmatically
    via URL rewriting?You can implement it in several ways:
    JSF<h:outputLink value="products.faces">
        <h:outputText value="click here" />
        <f:param name="productId" value="100" />
    </h:outputLink>
    <%-- or --%>
    <h:outputLink value="products.faces?productId=100">
        <h:outputText value="click here" />
    </h:outputLink>Or write a servlet listening on /shop/, scan the current request URI for product.faces, get the productId from the backing bean's session and rewrite the URL using request.getRequestDispatcher("product.faces?productId=" + productId).forward(request, response).
    Maybe there are more clever solutions using configfiles, but I don't have much experience (yet) with such GET request thingies in conjunction with JSF.

  • How can hide jsession id in url  while using struts

    i'm new to struts and when i use struts there is a jsession parameter in url how can i hide and dont see it

    Turn on cookies.

  • How to hide or mask the url in APEX Hosted environment

    Please anyone help me...
    Regards
    Pavan

    Hello Pavan,
    You should not use http://apex.oracle.com/ for production applications
    Hiding app_id, session_id etc. from URL - it's been discussed several time in forum, see Nicer URL for an Oracle APEX application | Inside Oracle APEX by Patrick Wolf
    for more examples, see http://www.google.co.in/search?sourceid=chrome&ie=UTF-8&q=nice+apex+urls
    Regards,
    Hari

  • Hide jsessionid in the URL

    Hi,
    I am appending jsessionid in to the URL in the form tag.
    Is there any way to Hide jsessionid in the URL.
    Using Apache2 and Tomcat4.1.24
    Your help is greatly appreciated.
    Thanks,
    Rama

    And why is that a problem? If they haven't logged out, then it shouldn't matter so much, except that it's a security issue potentially on public computers, but that is always the case, so users must be educated to log out. If they have logged out, then the session ID will be (should be) invalid after that point and thus it's a moot point. Personally, I don't see it as any problem whatsoever that it can be seen.
    And if you are worried about hackers intercepting data on the line, then that doesn't matter at all, you'd need to use SSL to solve that problem.

  • Anyone knows how to hide or dim the menu bar ?

    Anyone knows how to hide or dim the menu bar ?

    MagicMenu, but it may no longer work.
    Auto-hide the dock and menubar on a per-app basis .
    Hide Your Mac Menu Bar and Dock for a Cleaner Desktop.
    All found doing a Google search. Why not give that a try first before posting here.

  • I want to record my voice over a karoke track, how do I listen to the song while recording my voice simultaneously?

    I want to record my voice over a karoke track, how do I listen to the song while recording my voice simultaneously?

    What's your setup? Normally you hear all  tracks (that are not muted) in your headphones while you record a new one.

  • WD ABAP - Reading the URL Parameters for FPM application

    Hi,
    As per the Custom requirment,
    I want to pass URL parameters for WD ABAP application (sap/bc/webdynpro/dbm/app_veh_cus_search) which uses FPM.
    example: sap/bc/webdynpro/dbm/app_veh_cus_search?Customer=12345&fromExternal=true
    I am facing difficulty in reading the URL parameters.
    How to read/get the URL Parameters for an FPM WD ABAP application????
    Observation:
    I tried reading the parameter in Window --> HANDLEDEFAULT method. But could NOT read the Parameters from here for FPM application whereas if I create a Z Custom application then I could read the URL Parameters. so the issue is in reading the URL Parameters for FPM application.
    Kindly support
    Regards,
    Hussain

    Hi Hussain,
    You can do this either with the methods of interface if_fpm_parameter...
    DATA lo_param TYPE REF TO if_fpm_parameter.
    lo_param = cl_fpm_factory=>get_instance( )->mo_app_parameter.
    CALL METHOD lo_param->get_value
        EXPORTING
            iv_key   = parameter_name
        IMPORTING
            ev_value = parameter_value.
    or a more generic approach using class cl_wd_runtime_services...
    cl_wd_runtime_services=>get_url_parameter
    Cheers,
    Amy

  • How do I find out the component ID on a certain page?

    How do I find out the component ID on a certain page? problems is that I'm using some page template which I do not have source code for that.I need to find out the component id to pass to UIComponent.findComponent(id) as parameter. is there anyway?
    Thanks

    If you go to the partial trigger property of any of your page component you can open the edit partial trigger browser.
    There you can find the components of your template and their ids

  • Loading issue : Error: sql error in the database while accessing a table

    Hello,
    where as one of the DTP in the process chain failed due to  *Error: sql error in the database while accessing a table*, where as in the short dump it showing as Transaction log of data base is full., but i checked the data base space in DB02, more space is available . once we run the same DTP by manually its successful. its not through  any errors.
    could u please help me out solve the problem.
    Thanks
    siva kumar.

    it might be a lock. do you drop index before loading?
    the database might be full at the moment of loading and not later if many loadings happen at the same time on the same system...
    when you then rerun your dtp manually, it can go through as it's perhaps the only one running at that moment...
    you can try to set the btch parameter to 1...this will help in some cases.
    M.

  • How do I automatically capitalize the beginning of each sentence in Pages?

    Hello there!
    Please help...
    How do I automatically capitalize the beginning of each sentence in Pages version 5.2?
    The old version of Pages (Pages '09) automatically capitalizes the first word of each sentence. But in Pages 5.2, I have to manually capitalize the first word of every sentence. How can I make this automatic?
    The options in Menu > Format > Font > Capitalization, do not show an option for sentence capitalization. Please help. Thank you!

    Feature removed from Pages 5 along with over 100 others,
    Pages '09 should still be in your Applications/iWork folder.
    Pages 5 is a disastrous beta pushed onto users, and misrepresented by Apple as an "Upgrade".
    Peter

  • How can we implement product key feature while installing AIR application?

    How can we implement product key feature while installing AIR application?

    Hello,
    Could you try using /Q or /QS parameter?
    http://msdn.microsoft.com/en-us/library/ms144259(v=sql.110).aspx
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • How to determine or verify the language used if your application is in mult

    hi,
    How to determine or verify the language used if your application is in multi Language Env.
    Thanks & Regards

    Hi again;
    I suggest also see below link which we discussed before here
    Find languages installed in my R12 instance ?
    Regard
    Helios

  • I want to assign the Url of a Sharepoint list page to a Constant, and I am using it into User Control navigate Url.

    I want to assign the Url of a Sharepoint list page to a Constant, and I am using it into User Control navigate Url.
    But it is Not working there , Could you Please Suggest me the Better way..
    Regards
    Nitesh

    Your question isn't clear. Can you explain what you're trying to do and what you've attempted?

Maybe you are looking for

  • HP Officejet Pro 8600 Plus e-All-in-One - terrible print & scan options

    I just purchased an HP Officejet Pro 8600 Plus e-All-in-One an the print options look like they were written by someone from the 1990s.  There are no options for lower resolution - only draft, normal, best and no option for black and white - other th

  • Euro(�) character in JSP -page

    I'have a JSP-page where is html-textbox for adding salary wish for the job and the problem is that I can't � character from request! I have to pages. In first one i have form where the text box is and a second one for saving the info to a bean. I hav

  • How to deal with this problem while Flex Integration   SSH

    Error creating bean with name '_messageBroker': Instantiation of bean failed; nested exception is java.lang.NoClassDefFoundError: flex/messaging/AbstractFlexSessionProvider-- Caused by: java.lang.ClassNotFoundException: flex.messaging.AbstractFlexSes

  • Head Gesture Library for Kinect enabled applications: Beta Testers Wanted

    Hi everyone, I'm currently working on a library to detect Head Nods (Nodding in agreement), and Head Shakes (Shaking in disagreement) and I would like to know who would be interested in beta testing the Head Gesture Library for Windows 8.1 store appl

  • Sizing guidelines for CE 7.1 and NWDI 7.1

    Dear Experts, One of our clients wants to develop the system with CE 7.1 and use NWDI for the lifecycle management of the software. I am looking for the sizing requirements for the development environment. Will anybody help me get the guidelines for