Wordpress theme help needed

ruworth

BANNED
Joined
May 17, 2010
Messages
251
Reaction score
71
I have just set a new theme on a wordpress site and here is my problem, when you go onto the site the address bar displays the url corrctly but as soon as you click on any link i get an # then the page (see below)

http://www.mysite.com/#/searchpage

Can anyone tell me how i can get rid of the # symbol

thanx
 

What's the site?

HTH .... :cool2:

 
I didnt want to post the site as some people may have seen it as a cheap way to get traffic but since you asked its http://www.sexyfacebookprofiles.com
 


What's the content of your .htaccess file in the root directory?

It appears to be a rewrite rule problem.

HTH .... :cool2:

 
Last edited:
PM sent with the contents of the .htaccess file
 
Last edited:

ruworth said:
i hope you can help me with this

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

Comment out the line below by adding a # at the beginning of the line.
# RewriteRule ^index\.php$ - [L]
and save it and try it - if that breaks it take the # back out.

HTH .... :cool2:

 



Comment out the line below by adding a # at the beginning of the line.
# RewriteRule ^index\.php$ - [L]
and save it and try it - if that breaks it take the # back out.

HTH .... :cool2:

Thanx for the reply but its still the same result
 
I sused it out, the problem was in the script.js file

uri = window.location.href.split("#/");

I just removed the # from this line and uploaded it and problem solved on my side, can you please go to the link below and test it for me to see if it works from another IP.

EDIT: I tested it on my iphone and im getting the same result so i have given up on the fix as it dosent effect my site at all, thanx for all the help.
 
Last edited:
Ok, now you got a different problem. I clicked on one girls name and it woked fine - no # - but when I clicked on another girls name it showed the first name plus /#/ then the second girls name in the url.
 
Ok, now you got a different problem. I clicked on one girls name and it woked fine - no # - but when I clicked on another girls name it showed the first name plus /#/ then the second girls name in the url.
Thanx for the test but i have given up on trying to fix this as it dosent cause any problems having the # in the url.
 
Back
Top