Αυτός ο ιστότοπος θα έχει περιορισμένη λειτουργικότητα, όσο εκτελούμε εργασίες συντήρησης για να βελτιώσουμε την εμπειρία σας. Αν ένα άρθρο δεν επιλύει το ζήτημά σας και θέλετε να κάνετε μια ερώτηση, η κοινότητα υποστήριξής μας είναι έτοιμη να σας βοηθήσει στο Twitter (@FirefoxSupport) και στο Reddit (/r/firefox).

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Μάθετε περισσότερα

The url for a website is duplicating in firefox bt not other browsers eg: http://www.lorch.ca/\\www.lorch.ca/services.html

  • 3 απαντήσεις
  • 2 έχουν αυτό το πρόβλημα
  • 3 προβολές
  • Τελευταία απάντηση από cor-el

more options

I have uploaded a website lorch.ca in other browsers like chrome or safari the menu works fine for the other page links but in firefox the url duplicates and therefore does not link to the page but gives a default error page

I have uploaded a website lorch.ca in other browsers like chrome or safari the menu works fine for the other page links but in firefox the url duplicates and therefore does not link to the page but gives a default error page

Όλες οι απαντήσεις (3)

more options

Unfortunately, the author used \\ in place of // in these links and Firefox does not correct that automatically:

<ul id="MenuBar2" class="MenuBarHorizontal">
  <li><a href="http:\\www.lorch.ca/index.html">Home</a></li>
  <li><a href="http:\\www.lorch.ca/about.html">About</a>
  <li><a href="http:\\www.lorch.ca/services.html">Services</a>
  <li><a href="http:\\www.lorch.ca/clients.html">Clients</a></li>
  <li><a href="http:\\www.lorch.ca/contact.html">Contact</a></li>
</ul>

Τροποποιήθηκε στις από το χρήστη jscher2000 - Support Volunteer

more options

The problem is that this has not been put in the code. The same site in chrome does not show this address with the \\ it shows correctly. The author which is myself did not put this address in it appears that firefox is doing this to the address.

more options

The backslashes are really in the page source.
The page source in Google Chrome shows them as well, but GC ignores those backslashes and convert them automatically to forward slashes.
Firefox doesn't do that and requires forward slashes.

You can use these in inspect the page source:

  • Firefox > Web Developer > Page Source
  • Tools > Web Developer > Page Source (Ctrl+U)
  • Right-click on a web page to open the context menu and select View Page Source

javascript:(function(){var e=document.querySelectorAll('a[href]'),t=[],i;for(i=0;E=e[i];i++){if(/\\/.test(unescape(E.getAttribute('href')))){t.push(E.href);}}alert(t.join('\n'))})()