How to design the URL?

How to design the URL?i know that the Google  will take down the good URL.such as the staticize URL Google will like more..

A site's URL structure should be as simple as possible. Consider organizing your content so that URLs are constructed logically and in a manner that is most intelligible to humans (when possible, readable words rather than long ID numbers). For example, if you're searching for information about aviation, a URL like http://en.wikipedia.org/wiki/Aviation will help you decide whether to click that link. A URL like http://www.example.com/index.php?id_sezione=360&sid=3a5ebc944f41daa6f849f730f1, is much less appealing to users.
Consider using punctuation in your URLs. The URL http://www.example.com/green-dress.html is much more useful to us than http://www.example.com/greendress.html. Google recommends that you use hyphens (-) instead of underscores (_) in your URLs.
Overly complex URLs, especially those containing multiple parameters, can cause a problems for crawlers by creating unnecessarily high numbers of URLs that point to identical or similar content on your site. As a result, Googlebot may consume much more bandwidth than necessary, or may be unable to completely index all the content on your site.

Similar Messages

  • How to change the url of "Add New Item" of a particular list in SharePoint 2013???

    Hi Guys,
    How to change the url of "Add New Item" of a particular list in SharePoint 2013???
    I need to redirect it into the page where I have created my Visual web part.
    Please suggest
    Warm Regards,
    Tony Joy

    Hi,
         There are multiple ways to change the form url like javascript, SharePoint designer, custom code, editing default form to have custom web part etc, Please follow the url below that describe diffent methods and steps
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/ec2769a0-683c-4023-8804-b596e4f92a3a/change-default-forms-on-custom-list?forum=sharepointcustomizationlegacy
    Hope it helps!!!
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. Thanks, Ajeet

  • How to design the report?

    Hi,
    how to change the filling data in report by vertical way?
    for eg: i am creating a group (group by userId) and displaying user name and access rights info;
    User Name   Access Rights
    TestUser      Adminuser
    TempUser    NotanAdminuser
    but i want in this format
    UserName        TestUser   TempUser
    AccessRights Adminuser  NotAnAdminuser
    how to design the report?

    i haven't tried using cross tab.
    but my requirement is like...
    Modified User Name ........ TestUser     Thendral    till 'n' number of users
    Total NO of Patients..........10                    5
              Heart Failure...........5                      1
              Surgical..................1                      2
              Pneumonia             3                      1
              Chest Pain             1                       1
            till 15 rows
    How to achieve this using crosstab?

  • How to open the Url type in Attachments Table

    Hi All,
    If we attached the any files, files are stored in the fnd_lobs table, pickup the data from the fnd lobs table and stored in the local system but if attached the url type how to open the url type.is there any standard ?
    Thanks,
    Venkat

    You can do it one of two ways:
    1. Insert some CSS that will change the target to "_new".
    2. Change the field that the user enters information in to a single line of text, then create a calculated column that is:
    =CONCATENATE("<a href=",[URL Field]." target=new>Click here</a>")
    Format that as a number.
    Andy Wessendorf SharePoint Developer II | Rackspace [email protected]

  • How to edit the url of sites in new tab page of firefox

    If we open newtab in firefox 9 tabs are visible. How to edit the url address of the previously pinned tab.

    I found solution for this problem.
    1. Type ''about:config'' in firefox url and click enter.
    2. An alert will be shown on click on "I'll be careful, I promise!" button.
    3. Type ''browser.newtabpage.pinned'' in textbox and click enter.
    4. Right click and select '''Modify''' option to edit the url address.
    ''I want to change this url address''
    [{"url":"http://localhost:8080/Admin/login","title":null},]
    After change the url address in firefox is
    [{"url":"http://localhost:8080/Admin","title":"Admin"},]

  • How to customise the URL on endsession button and point it to a third-party Application?

    Hello ,
    I have a scenario where i want to redirect to a third-party application instead of OPA summary screen on hitting the close-->end session button.
    How to customize the URL behind the end session button to point to the third-party URL?
    Thanks,
    Charu

    You can use velocity templates and javascript to achieve what you need.
    Update confirm_end_session_screen.vm to
    1. dynamically call the end session URL using ajax(?) to actually close the active OPA session
    2. redirect user to the third-party application when the OPA session is closed

  • How to find the URL of precalculated query

    Hello,
    I would enter into a precalculated query direclty the URL; is it possible?  How to find the URL ?
    Thanks.

    Hello Arvin,
    I have created a Web Template, and through the Reporting Agent, I run the query.
    Regards,
    Laura

  • How to design the "Bipair HashCode"  ( in the int type )

    When I use the short type "word &#12289;Doc " .
    It's ok!
    public class Bipair{
    short Word,Doc;
    public Bipair(short in_Word,short in_Doc){
    this.Word=in_Word;
    this.Doc=in_Doc; }
    public boolean equals(Object o) {
    return (((Bipair)o).Word==this.Word && ((Bipair)o).Doc==this.Doc); }
    public int hashCode() {
    return Word<<16 | Doc; // fabricate a 32 bit int using two 16 bit shorts }
    My question :
    How to design the hashCode in the int type ?
    public class Bipair{
    int Word,Doc;
    public Bipair(int in_Word,int in_Doc) {
    this.Word=in_Word;
    this.Doc=in_Doc; }
    public boolean equals(Object o) { // of Object
    return (((Bipair)o).Word==this.Word && ((Bipair)o).Doc==this.Doc); }
    public int hashCode() { // of Object
    return Word<<16 | Doc; // <=== how to design ????????????????
    Thanks a lot .

    I get it.
    // In Effective Java ^^
    public int hashCode() { // of Object
    // return Word<<16 | Doc; // fabricate a 32 bit int using two 16 bit shorts
    int result=17;
    result=37*result+Word;
    result=37*result+Doc;
    return result;
    }

  • How to get the URL of an iView using AbstractPortalComponent

    Hi All,
    I need to get the URL of an iView using AbstractPortalComponent using the following code.
    But i am unable to open the URL from the Browser
    This is the following code snippet
    public class AbsClass extends AbstractPortalComponent
        public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
    IPortalComponentURI componentURI = request.createPortalComponentURI();
    componentURI.setContextName("pcd:portal_content/LOG_Viewer/LogViewer");
    String URI=componentURI.toString();
    response.write(URI);
    The output i got from the browser is:
    /irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fLOG_Viewer!2fLogViewer
    Actual Path: pcd:portal_content/LOG_Viewer/LogViewer
    Output Path: /irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fLOG_Viewer!2fLogViewer
    Why some extra numerics are embeded in the output path when compare with the Actual Path.
    Can any one send me the modified code and your suggestions, how to achieve this problem.
    Regards
    Phani

    Hi,
    Now i need to get the URL of this component.
    IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
    IPortalComponentURI componentURI = request.createPortalComponentURi();
    componentURI.setContextName("com.sap.portal.appintegrator.sap.bwc.Transaction");
    String URI=componentURI.toString();
    response.write(URI);
    I export this component into Portal and i tested with an iView based on this par file, i got the URL in the Preview.
    But when i tried to run this URL by adding the http://<IPADDRESS>:<PORTNO>+URL
    I am facing one AccessDenied Exception for this Object. ( USER/GUEST)
    Is there any security zone, or other Permissions Problem, if so can you plz guide me what are the settings i have to change inorder to resolve this exception
    Regards
    Phani

  • How to track the URL that comes from a referred page using XSQL Custom Handler

    Hi,
    I have a cold fusion page(say cf.cfm) that sent a request to xsql page(say test.xsql) and then xsql page displays results. I want to capure the URL of cf.cfm page and then after checking its host name and path name for correctness then want to display the test.xsql results.
    Please let me know how can I capture URL of the refered page(cf.cfm) in the Custom Handler and then I want to extract host-name and path-name out of that url and on the basis of their values I want to display the result of XSQL page(test.xsql).
    Regards
    a2012

    req.getHeader("Referer") will return the referring url

  • How to get the URL of the window which is opened as a dialog

    Hi All,
    I am working on BPM Worklist and in BPM Worklist we have created a Custom ADF Application.
    What BPM Worklist does is :- it shows the task associated to the user and when user double click on the task , it opens the custom ADF Page created by us.And it opens the ADF Page in the modal dialog.Since i do not have any control on the parent page which is the BPM Worklist page.
    I need to check whether the url contains the _ADFvDlg , if it contains then i need to put some logic and then executes something.
    Is there any way to find out the Url of the dialog window of the BPM Worklist using ADF not using javascript ?
    Regards,
    Shah

    Hi Frank,
    I have used the method which u have said in phaseListener
    System.out.println("GOT URL"+((HttpServletRequest) facesContext.getCurrentInstance().getExternalContext().getRequest()).getRequestURL());
    System.out.println("GOT URI"+((HttpServletRequest) facesContext.getCurrentInstance().getExternalContext().getRequest()).getRequestURI());
    but no help, it gives me the same url of both the pages(parent and dialog one).
    Say if i use the javascript and anyhow get the windowId of the dialog and pass it to the server onPageLoad then it can be helpful.
    But how to do that as well.?
    I mean how will i call the javascript and return url to the server and do the validations on PageLoad.
    Please suggest!!
    Regards,
    Shah

  • Extended Notifications: how to change the URL link

    Hello,
    We are on ECC6. We use Extended Notifications to alert users to the presence of new workitems, but when they click on the link to execute the workitem, they're presented with the login screen.
    We have been able to send emails from workflow which contain a link that does not ask for a login so I know which URL to use. The problem is, how can you set the URL in Extended Notifications? How does it decide which URL to use? I've tried changing a few General Settings in SWNCONFIG, none of them made a difference.
    Any hints, tips, suggestions would be appreciated.
    regards
    Rick Bakker
    Hanabi Technology

    Hi Rick,
    I wrote my own notification handler to solved an link issue (wanted to point to a specific iView url). I changed the notification handler via Category and double clicking on the category:
    Scenario                        WORKFLOW                       
    Category                        ZCATEGORY                    
    Description                    Adobe Administrator                            
    Requested Reliability          0 Undefined                                    
    Collective Message             A Grouping with Othe                           
    Notification Priority          5 Medium                                       
                                   Delete After Send                              
    Category Handler               CL_SWN_CATEGORY                                
    Notification Handler           ZCL_SWN_NOTIF_WF                          
    Handler for User               CL_SWN_USER_STD                                
    Have a look at some of the methods:
    LOAD_INSTANCE_WA
    ADD_LINKS_ACTION
    ADD_LINK_ACTION_DISPLAY
    ADD_LINK_ACTION_EXECUTE
    ADD_LINK_ACTION_DECISION
    CREATE_ACTION_ATTACHMENT
    CREATE_INBOX_ATTACHMENT
    Hope it helps you understand how the link is created.

  • How to access the URL on page load and open it in the new tab of browser

    Hi All,
    I am using Jdeveloper 11.1.1.5 and i have one page "Hello.jspx" and one data control consist of two attributes :-one is "id" and other is "url".
    The datacontrol has been created from the WebService.
    Now my requirement is : -
    whenever i run the page "Hello.jspx" , then on page load the url attribute should get accessed and should be opened in a new window or tab of the browser.As the url contains the information about the document.
    Hello.jspx page doesn't contain any bindings of the url attribute.
    I had thought of using the PhaseListener class and use the onPageLoad method .But how do i get the url from the dataControl and open it in the other tab of the browser on page load.
    Please suggest!!!!
    Thanks.

    Hi,
    I don't think this can be done this way. I would think that you need to execute JavaScript upon Hello.jspx load to open a new window and pass the URL to it
    Frank

  • How to design the session window like yahoo messenger by using  Midlet

    Hai all,
    I want to design the session window using midlet, like what we have in yahoo messenger. In yahoo messenger we can add picture to the message, but in Midlet application how to create the images and how to attch with the message. Please, can anyone help me..
    Thanks/Regards
    Bkrishnan

    CustomItem, ImageItem, Form, Canvas,...
    All you need is reading the javadoc and tutorials...

  • How to edit the URL in the mail that is triggered from Solution Manager 7.1 ?

    Hi,
    When we perform an action "To Be Approved" for an RFC (Request For Change) in Solution Manager, a mail will be triggered to the respective Change Manager. In that mail, a link will be there which will guide the Change Manager to the SAP Logon Pad.
    The problem is, the link in that mail is not pointing towards the required system. It is taking the change manager to Development system instead of Production System.
    Can you please help me, how to change this URL link in that e-mail that is being triggered when the action is performed. I just need to remove the Development system URL and paste the Production system URL.
    Thanks in advance,
    Bharath.

    Hi Bharath,
    Please check below Blog and KBA:
    Incident Management and Change Request Management: E-Mail functionality
    in SAP Solution Manager 7.1
    http://scn.sap.com/docs/DOC-35291
    1831361 - Solution Manager - Changing status in CRM_UI gives BSP error
    Exception Class - CX_SY_DYN_CALL_PARAM_MISSING
    Thanks
    Vikram

Maybe you are looking for

  • Different colored screens

    Hello, both my friend and I own Iphone 4's. When we look at our screens, they look completely different. His has a very visible yellow tinted screen, and mine is more 'white' looking. I will post an image as soon as I can, but is this normal? Why are

  • How to change security question

    how to change security question in apple id. I forgot my answers. Please help

  • Success with iTunes but a problem with a temp file

    Further to my recent post, I have now had some form of success with opening iTunes but I can only do this if my external hard drive (which has the remnants of some file left). I have tried to copy and paste the files relating to iTunes but for some r

  • Problem after over riding paintComponent() method

    I am over riding the paintComponent() method for a button to show the text in 2 lines. But when I invoke setEnabled(false) on the button, the button is getting disabled but the text is not. Could any one please let me know how to do that. The code fo

  • Rendering changes made to video filters taking too long?

    For some reason my rendering time has gotten way to long for changing little things like the exposure on a 3-way color corrector for example. What could be causing this? The footage is compressed H.264 and they are located in a folder with the projec