• Resolved ch4sethe5un

    (@ch4sethe5un)


    This is one of my working site pages:
    https://www.mu-guides.com/basic-gameplay/

    I noticed that when i re-hover over the second link from the left it will stack the URLs like this in the bottom left of the browser display(firefox):
    https://www.mu-guides.com/basic-gameplay/basic-gameplay/

    The html for the navigation looks like this:

    <ul id="main-navi" class="navi">
    				<li><a class="test" href="pollsarchive/"></a></li>
    				<li><a class="test" href="basic-gameplay/"></a></li>
    				<li><a class="test" href="#"></a></li>
    				<li><a class="test" href="#"></a></li>
    				<li><a class="test" href="#"></a></li>
    				<li><a class="test" href="#"></a></li>
    			</ul>

    I dont see anything wrong..

    It works fine and directs traffic correctly, but its unsettling seeing that happen in the browser.

    Any ideas?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter ch4sethe5un

    (@ch4sethe5un)

    does it have to do with my htaccess?

    # BEGIN WordPress
    
    <IfModule mod_rewrite.c>
    ErrorDocument 404 /index.php?error=404
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    thats in there along with some other things above it.

    Thread Starter ch4sethe5un

    (@ch4sethe5un)

    Ok so i tried something and i turned the permalink structure back to the original “default” style and i changed the theme back to the twentyten theme. After that i changed the permalink style back to ‘/%postname%/’. It works as its supposed to in the twentyten theme, but when i switch to the starkers ‘naked’ theme. it is wrong.

    What in a different theme can change the permalink structure?

    Thread Starter ch4sethe5un

    (@ch4sethe5un)

    The problem was that i wasn’t using absolute paths for example. href="/pollsarchive/"

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘URLs stack incorrectly on each other’ is closed to new replies.