Page 1 of 1

mod rewrites... one more time =)

Posted: Sat Dec 10, 2005 1:34 pm
by s.dot

Code: Select all

<img src="image.jpg" onClick="document.location='#jump';">
This is setting off my mod rewrite rule(s) and taking the user back to the home page every time. (This only seems to be happening with Mac users?)

Here are my rewrite rules

Code: Select all

Options -Indexes

RewriteEngine on

RewriteRule ^([a-zA-Z0-9_-]+)(/)?$ showme.php?u=$1

RewriteRule ^photos/([a-zA-Z0-9_-]+)(/)?$ /albums.php?u=$1
RewriteRule ^blog/([a-zA-Z0-9_-]+)(/)?$ /blogit.php?busername=$1

Posted: Sun Dec 25, 2005 12:56 am
by josh
hmm this thread is over a week old but I just noticed it



anyways I bet this is not a mod_rewrite issue at all

Code: Select all

<img src="image.jpg" onClick="document.location='#jump';">
try changing it to

Code: Select all

<a href="#jump"><img src="image.jpg" border="0"> </a>
it could be a mac javascript problem, this will tell us for sure