URL 'WWW' Issue

If I enter the URL to my site without using the 'www', I get the following message
http://mysite.com
The website is temporarily unavailable. Please try again later.
If I use the 'www', it works fine.
http://www.mysite.com
What would cause that? Is there an adjustment for it? I'm using MobileMe to host the site.

No, it is nothing to do with MobileMe, but what you need to do is go to your domain name registrar and alter the CNAME settings there.
Go to DNS and ensure that CNAME forwarding is set up for both @ and www, so is should be something like @, CNAME, web.me.com and then www, CNAME, web.me.com.
The @ represents your domain name, so domain.com and the www represents your sub-domain name, so www.domain.com. For both to work when entered, you need to set up CNAME forwards for both.
If you have your domain name with GoDaddy however, you can only set a CNAME for the www, so to get the domain.com to work, you need to forward domain.com to www.domain.com.
It is a simple fix at your domain name registrar rather than MobileMe.

Similar Messages

  • URL rewriting issue

    Hello all,
    I am having a url rewriting issue where the first time someone accesses the website with a browser that has cookies enabled my jsp pages will still encode all of the URL's with the jsessionid. Which I believe should not happen unless cookies are disabled.
    Why is this occuring?
    Once the user goes to another page in the site or the second time they bring up the site in the same browser the jsessionid is not written to the URL links. This only happens on first access.
    I am using Tomcat 5.5
    response.encodeURL() to encode the links
    Is this a container or programming error?
    Thank you all very much for your time in reading this!

    Ok, thank you.
    Based on this: http://www.sciabarra.com/fatwire/2011/04/17/improving-the-firstsiteii-url-assembler/
    I think my approach would work if I remove the Asset API stuff from here and put them into a helper class, which would be then called from the wrapper JSP.
    I'd rather not install 3rd-party extensions just for url rewriting, at least not yet...

  • Map Viewer URL Connection Issue

    Hi,
    I have an UI project, for which i have created a Deployment Profile named 'adfXXXXXUI' nothing but created a adflibrary for that UI project.
    While creating the adf jar, i have come across an Option called 'Connections' .
    Here i have selected Connection Names Only ... means i will be getting all the names of the connections i have created & those will be reflected in my local connection.xml file.
    After configuring the rest of the params, i deployed my UI project to "deploy -> adfXXXXXUI.jar".
    And we have used this jar to integrate with another UI application ... And the taskflows avilable in the jar will be used in the other UI application.
    Now here is my problem ... Actually my connections.xml file has a URL Connection. This is how it looks like....
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <References xmlns="http://xmlns.oracle.com/adf/jndi">
    <Reference name="MapServer" className="oracle.adf.model.connection.url.HttpURLConnection" xmlns="">
    <Factory className="oracle.adf.model.connection.url.URLConnectionFactory"/>
    <RefAddresses>
    <XmlRefAddr addrType="MapServer">
    <Contents>
    <urlconnection name="MapServer" url="http://sbsys1.intra.schneider.com:8109/mapviewer"/>
    </Contents>
    </XmlRefAddr>
    </RefAddresses>
    </Reference><Reference name="snibuilddb" className="oracle.jdeveloper.db.adapter.DatabaseProvider" credentialStoreKey="snibuilddb" xmlns="">
    <Factory className="oracle.jdeveloper.db.adapter.DatabaseProviderFactory"/>
    <RefAddresses>
    <StringRefAddr addrType="subtype">
    <Contents>oraJDBC</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="user">
    <Contents>sni_guest</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="port">
    <Contents>3720</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="hostname">
    <Contents>uxsys186v</Contents>
    </StringRefAddr>
    <SecureRefAddr addrType="password"/>
    <StringRefAddr addrType="serviceName">
    <Contents>snit0.world</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="DeployPassword">
    <Contents>true</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="oraDriverType">
    <Contents>thin</Contents>
    </StringRefAddr>
    </RefAddresses>
    </Reference>
    </References>
    All the taskflows avaialble in my jar using the URL connection which mentioned above. But the adflibray jar got created with a file named 'jar-connection.xml', where i can see <Reference/> as an empty Tag. Because i have selected connections name only as an option when creating the adflibrary for my UI.
    Hence it is appearing so ... But when i added this jar to the other application, i have dragged & dropped the taskflows as a region on to the JSPX page. And i started running the page. On the page .... i can see only the data which is not making use of MapServer connection defiition. Along with that, some maps needs to rendered .. but that is not happening. Rest of the page with the filter critieria is being displayed properly.
    Now i have selected Include Connection Details as an option, by editing the adfLibrary Deployment profile of the UI & redeployed & found the same thing. Like, though i specify the Include Connection Details as an option ... i did not see those URL connection details in my jar-connection.xml file.Still it is not working.
    All the taskflows inside the jar are trying to use this URL connection from jar-connection.xml, which is avaiable inside the adfLibUI.jar.
    I tried with a scenorio some thing like ... For the application to which i have added this adfUILibrary, there itself i created a URLConnection ... but it did not worked as well.
    Requesting you to let me know how can i get avail of my URL connection in to my jar ...
    Thanks & Regards,
    Kiran Konjeti

    This is purely ssl issue. You can try adding the below logic first.. This code basically sets ssl properties for us.
    import java.security.Security;
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    Properties properties = System.getProperties();
    String handlers = System.getProperty("java.protocol.handler.pkgs");
    if (handlers == null) {
        // nothing specified yet (expected case)
        properties.put("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol");
    else {
        // something already there, put ourselves out front
        properties.put("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol|".concat(handlers));     
    System.setProperties(properties);
    Below you start your code....

  • HttpsURLConnection URL connection issue

    Hi All,
    I need to create URL connection with HTTPS URL. I can run Main java class successfully in machine which hosted in SAP Java server, but fail to run integrate it with e-commence application. When depployed in to SAP Java server cannot open HttpsURLConnection and always return CalssCastexception. However same code run as Java Main class
    Is this can be a (SSL) Handshake? or is this SSL issue?
    MyCode:
    String httpsURL = "https://encrypted.google.com/";
        URL myurl = new URL(httpsURL);
        HttpsURLConnection con = (HttpsURLConnection)myurl.openConnection();
        InputStream ins = con.getInputStream();
        InputStreamReader isr = new InputStreamReader(ins);
        BufferedReader in = new BufferedReader(isr);
        String inputLine;
        while ((inputLine = in.readLine()) != null) {
          System.out.println(inputLine);
        in.close();
    Thank You

    This is purely ssl issue. You can try adding the below logic first.. This code basically sets ssl properties for us.
    import java.security.Security;
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    Properties properties = System.getProperties();
    String handlers = System.getProperty("java.protocol.handler.pkgs");
    if (handlers == null) {
        // nothing specified yet (expected case)
        properties.put("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol");
    else {
        // something already there, put ourselves out front
        properties.put("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol|".concat(handlers));     
    System.setProperties(properties);
    Below you start your code....

  • Flash / Actionscript URL Request Issue

    Morning Smart Peoples.
    So I have a dangerously rudimentry knowledge of Flash and Actionscript and the website I tend to is giving me issues.
    We have a small Flash Movie on the site that cycles through 3 pictures and each picture links to the corresponding website when you click on it. (To view : http://www.bostonleather.com : Top Right Corner) I updated the links in the Actionscript, and changed the pictures (not my first time doing either), but this time it didn't work so well.
    First time it cycles through, everything works as planned. After it loops however, all additional Mouse Event's link to the last URL in the movie.
    Frame 1 Actions
    play();
    btn_inv.addEventListener(MouseEvent.CLICK, mouseClick);
    function mouseClick (event:MouseEvent):void
    var request = new URLRequest("http://www.kanoycommunications.com/");
    navigateToURL(request,"_blank");
    Other Frame Actions are identical to this minus the "play();" function naming and URL
    Final Frame is simply
    gotoAndPlay(1);
    Thanks.
    Marc

    If you are assigning different event listeners to the same button then that could be your problem.  You should only need to assign that listener once in frame 1.  Similarly, you should only need to define the function in frame 1, but pull the request declaration out of the function and then assign it a new URLRequest value at the different point along the timeline...
    Frame 1 Actions
    play();
    var request = new URLRequest("http://www.kanoycommunications.com/");
    btn_inv.addEventListener(MouseEvent.CLICK, mouseClick);
    function mouseClick (event:MouseEvent):void
         navigateToURL(request,"_blank");
    Frame elsewhere Actions
    request = new URLRequest("http://www.someotherurl.com/");

  • My iWeb site hosted on PowWeb not showing up with old URL - CNAME issue?

    Since Apple migrated my .mac account to MobileMe, the site I was updating and hosting on PowWeb shows only the old uncorrected site. When I publish the URL I get a weird MobileMe URL which doesn't work well as people are used to the original URL. Very confusing!
    I've called PowWeb and they seem to understand the issue, but still not working. Although they did say it might take some time to take effect.
    How do I get the site to to use the original URL rather than the Mobile Me URL?
    What is the appropriate CNAME for MobileMe, if that's the problem?
    Thanks!!

    The PowWeb Tech suggested I need more than web.me.com, like IP addresses, a record names.
    Doing it that way and doing it via URL forwarding are mutually exclusive. It's up to you to decide. It's much easier to just fix the URL forwarding which is currently botched than to start messing with IP's, CNAMEs and A Records.
    So I need to go into PowWeb and change the URL forwarding to: http://web.me.com/markh47/Garfield_LAX/Join.html ?
    Yes.
    Do you have any idea under what category name that would be?
    Ask them how to change your URL forwarding. Normally you just type your corrected web.me.com url into a form on line.

  • Button URL Redirect - Issue passing %null% from LOV

    I have issue when attempting to pass %null% from a LOV to a subsequent target page. The URL Redirect works fine when a value in selected in the LOV but passes gibberish "?ll" when no value is selected from the LOV. Can anyone shed some light on what's is going on?
    Redirect looks like this:
    f?p=112:411:508326687872582::NO:RP,411:P411_AGENCY,P411_CATEGORY,P411_BUDGET_YEAR,P411_OIT_OFFICE,P411_DESCRIPTION:002,%null%,2012,1665,webJeff
    Edited by: jwellsnh on Jun 2, 2010 4:42 PM

    svk1965,
    Thank you for your response, I read many other threads and you are definitely on the right track. Got impatient though and took my project on a different track which ended being a better solution for me after all.
    Jeff

  • Oracle Apps R12 iRec URL Redirection issue

    Dear Friends,
    We have configured R12 i-Rec in an server and placed in DMZ.
    we have made this server as external and we have made the irec responsibilities to external and using the DMZ Server URL we were able to work without any issue.
    Now to publish this URL to Interner users with https and Port masking , we have mapped this URL http://abc.com:8020 to https://xyz.com using Microsoft UGC Firewall 2010.
    Now from Internet we were able to hit the URL https://xyz.com and could login as oracle application user with the same url https://xyz.com
    But when we click any of the irec responsilities (irecruitmnt agency (or) others) which is made external, the page is redirected to the Real DMZ Server URL http://abc.com:8020/OA_HTML/...
    and it shows error:
    The page cannot be displayed.
    I believe it should not happen , throughout the session it has to maintain the same new URL
    Please let us know the Fix.
    Regards,
    DB

    Hi;
    What is error in apache log file?
    Regard
    Helios

  • URL iview issue for intranet sites

    Hi Guys,
    I am creating a simple url iview for one of our Sharepoint site. when I preview the iview it works fine. but when I assign it to some Role, it doesn't load. "Page cann't be displayed" error comes. Some prefix with the text  "res://ieframe.dll/dnserror.htm#" added it the url.
    At the same time when I create url iview for internet sites they works. I have checked the Proxy settings and browser setting but no help.
    Please suggest if you something to try ?
    Regards
    Amit

    Hi Amit,
    Can you check the NWA Logs --> Default Trace to see if there are any log messages captured for this error. And analyse them.
    Also run a HTTP trace to check if the request calls generated. See if the Sharepoint URL is getting called or not. And status of response from that.
    Looking at the error, would suggest you to check the host names used on the URLs, should be FQDN.
    Also if your browser is IE8, may also want to add the portal and sharepoint domains to be shown in compatibility view. Can do this from Tools --> Compatibility View settings.
    Finally below is a help link to set up iViews in portal for sharepoint. Can refer to this and check the steps done at your end.
    [http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/e0489149-5c93-2a10-8aaa-da1cd0b6edf3]
    Thanks,
    Swapna Priya.

  • Qaaws url connection issue

    Dear All,
    *Description of Problem :*
    When i am entering the below URL link1 in the host definition at Qaas,then it is not able to accept it.Suppose if i change the URL like below link2 ,qaaws is accepting.
    I need the expert help on this
    Link1: http://tchbopd1.company.co.in:8080/dswsbobje/services/Session
    Link2:http://tchbopd1:8080/dswsbobje/services/Session
    I had check the same issue on another colleague system.Its working fine with above both links.
    Product\Version\Service Pack\Fixpack (if applicable):
    Bo Xi3.1 SP3 FP3.2
    Relevant Environment Information (OS & version, java or .net & version, DB & version):
    BO server-HP UX 11.31 Ia 64
    Bo client-windows
      web application-Tomcat
    Database-oracle
    Steps to Reproduce (if applicable):
    1.Open the Query as a web service tool(Qaaws)
    2.Click on the host and add new entry,at the time of entering in the url  line check the above mentioned problem.
    Regards,
    Vinay
    Edited by: BOCONSULT on Dec 24, 2010 5:15 AM

    Hi Stratos,
    Thanks for the reply.
    I am showing below the  host entry  which i am using
    ipaddress    host name
    172.31.2133    company     company.co.in
    in the qaaws url when i am entering  link1 below it is working.suppose if used the link2 it is not working.
    link1:http://company:8080/dswsbobje/services/Session
    link2:http://company.co.in:8080/dswsbobje/services/Session
    Please suggest  on this.
    Regards,
    Vinay

  • Workspace URL parameter issue!

    I have an URL like this:
    http://localhost:8080/workspace?startEndpoint=HelpDeskProcess.InitiationForm
    The process name is HelpDeskProcess and the endpoint name is InitiationForm
    But when I type this URL in browser it opens workspace but shows an error "Invalid endpoint Id".
    Any suggestions?
    Nith

    Hi Vikas,
    version is LiveCycle ES2 (9.0.0.0)   and SP1 not updated.
    Process is deployed and running on server.
    ps: the process is placed under a application folder named workflows. Is that cause this issue?
    Nith

  • URL link issue

    Hi
    I am trying to create a link in my project to one of our
    company intranet pages. I am using a click box and the URL - it
    works fine in the Preview from Slide or next 5 slides, but when I
    Preview in Web Browser it doesn't connect. Any suggestions as to
    what might be the cause?
    Thanks
    Alex

    Hi Alex
    Hmmm, before investigating too deeply, I'm seeing some
    familiarity here. For starters, the first link is to a .PDF. It's
    been my experience that links to .PDF and Word .DOC files is "iffy"
    at best. If you truly copied and pasted the links, I'd first try
    removing the %20 from that first link. That's something the browser
    normally inserts for a space. So instead of:
    http://wlgweb/Corporat/HumanResources/Staff%20Conduct/EmailInternetUsagePolicy.pdf
    Change it to read:
    http://wlgweb/Corporat/HumanResources/Staff
    Conduct/EmailInternetUsagePolicy.pdf
    This may help and it may just be twisting in the wind. But
    I'd try that first. I've often seen linking issues arise from that
    silly %20. If possible, try to avoid that. I'm guessing here that
    it may not be possible to control in your case as someone else may
    be in control of those names. I've personally always opted to
    either use a mix of upper/lower case names ( StaffConduct ) or
    substitution of an underscore where spaces would normally occur (
    Staff_Conduct ).
    Other wierdness I've seen when linking to .PDF content:
    * I personally had a different PDF reader (Foxit) installed
    as my default. When Foxit was my default reader, PDF links refused
    to open.
    * I think this one is IE specific, but I've also seen it
    where if I have a .PDF in the same folder and open that way, even
    though the address is totally correct, the first time through, the
    link fails. With the totally correct address showing in the address
    bar. I simply refresh the page and bingo, the PDF shows! Go figure.
    I really don't believe that this one is related to Captivate and
    the way it calls the links. My gut tells me it's an IE thing. But I
    have nothing to back me up on this.
    I'm not sure what to say or suggest for the second link. I
    tested it myself and it doesn't work, which tells me that either
    the link is simply incorrect, or possibly it's located on an
    intranet site.
    Sincerely... Rick

  • URL Item Issue

    Hi,
    I have a Portal site in which I have setup many URL items. The URL items all point to PDF files (reports) on the local server that are updated nightly by night operations. I have one file that seems to be stuck somehow. When I open the file directly on the server the report date reads January 7th, however when I login to the Portal site and try to open the link it opens with a report date of 12/18. It doesn't seem to matter what I do the link is stuck on a report from 12/18 for some reason. I have tried the following to no avail:
    -Cleared my local temp internet files, cookies, history, etc.
    -Hit Clear Cache on the Portal site
    -Removed the URL Item and recreated it
    -Removed the physical file from the server completely (it still opens the report from 12/18)
    -Searched the server for a file containing a date of 12/18 (nothing)
    -Logged into the Portal site from different computers and as different users.
    We are not having issues with any other files/URL items, just seems to be this one. Any suggestions on how to fix this would be greatly appreciated.
    Thanks,
    Joe

    The problem seems to be related to cache yet you have done quite a bit to see if it really is due to caching.
    you can try to verify if it is a cache issue and then fix it as follows:
    1. change the browser to access it. if you were accessing it through IE then try using firefox or netscape or some other browser.
    2. or use some other machine, ask a colleague to access that file from their system. if the item persists it would be above system's cache problem.
    3. now to clear the cache for the AS, you may also clear plsql cache. for that, if you are using version beyond 30x then
    - remove the folders of pmd, session and plsql in midtier\apache\modplsql\cache\.
    - then restart the oc4j_security in infra-home;
    hope that helps.
    syed naqvi

  • URL  Performance Issue

    Folks,
    I have the following code:
    URL url = new URL("http://www.apage.com/ws/" + txtHTML.getText());
    URLConnection urlConnection = url.openConnection();
    BufferedReader htmlPage = new BufferedReader(new InputStreamReader(url.openStream()));
    read the html page....I would like to run this 1000's of times. What would be quicker? How can I speed it up? I know that I can use threading, however this code itself is taking too long.
    Thanks
    Angus

    I've been using a package HTTPClient http://www.innovation.ch/java/HTTPClient/ as the JDK classes are a bit inflexible and (IMHO) rather unstable at the sort of useage rates you are talking about.
    Using this package (I think you can also do this with the JDK classes) under HTTP 1.1 you can create a single connection and request lots of URL's throught it. This improves performance by only creating the connection once for your 1000s of pages rather than 1000s of times.
    Code goes something like this;
    HTTPConnection conn = new HTTPConnection(host, port);
    while (true) {
    request = "/app/page.jsp?param=value";
    try {
    HTTPResponse resp = conn.Get(request);
    } catch (Esception ex) {
    In my case I'm using it to stress test and app server.
    HH

  • Air Application URL Path Issue

    I am trying to invoke a  content of the file which is in shared folder from Air application.
    Version : Flash builder 4.5,Flex3.6 sdk and Air 2.7.
    for this am using the below code..
    var request:URLRequest = new URLRequest();
    //request.url = ('file:///c:/params.txt'); - This is working fine
    request.url = ('file:///172.20.188.25/Share/chk/Property/params.txt');  // its not working
    trace("Unable to load URL: " + request);
    var variables:URLLoader = new URLLoader();
    variables.dataFormat = URLLoaderDataFormat.VARIABLES;
    variables.addEventListener(Event.COMPLETE, completeHandler);
    try
    variables.load(request);
    The same part of code ,I tried in Flex application is working .but in Air application its not working.
    Its urgent requirement,If any one know the way to resolve this path issues.
    Kindly let us know.
    Thanks in Advance !!

    I tried in the following URL but no use ..
    its throwing ioError and textError and stream error.
    1.file:///172.20.188.25/Share/chk/Property/params.txt
    2.http://172.20.188.25/Share/chk/Property/params.txt
    3. //172.20.188.25/Share/chk/Property/params.txt
    Is there any other solution for this issue ?

Maybe you are looking for

  • SSL cert on ASA 5512 from Thwate or Digitcert

    I ran into the issue when I install SSL123 cert from Thwate . I did not have issue with SSL cert from DIgitcert- their process and steps are simple and using better encryoption - SHA256. Compare to Thwate - their support did not let me use SHA2 and I

  • Save iGrid as image

    Greetings, Does anyone know how to save an iGrid as an image? We have Chart action block which takes Query Template and Display Template (only Charts) as inputs and saves that chart as image with the help of Image Saver. But for iGrid how to do this?

  • SAP XI and Lotus Notes

    Hello, Is there a best approach followed now to integrate XI and Lotus notes. We have a requirement to create a lotus notes document from SAP R3 using XI. Any suggestions and successful implementations please... Thank you Thilothama

  • Wiped eMac HD refusing to accept install of any mac os?

    When I power up my eMac, it goes on to a blue screen with a rotating cog, after the white screen with the Apple logo on it. I tried to reinstall from my Leopard install DVD, it loads up, goes to the language selection screen for installation but then

  • Indicator "delete planned order" is set during conversion

    Hello Guys,     While during Partial conversion of production error thru MD04, system shows the error message as indicator "delete planned order" is set. Whats the cause for this error How come we solve this issue . It's very most urgent Please PP gu