Need help installing PHP, configuring a script, or configuring a server? Then come on in and post your questions! We'll try to help the best we can !
Moderator: General Moderators
s.dot
Tranquility In Moderation
Posts: 5001 Joined: Sun Feb 06, 2005 7:18 pm
Location: Indiana
Post
by s.dot » Sat Dec 10, 2005 1:34 pm
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
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.
josh
DevNet Master
Posts: 4872 Joined: Wed Feb 11, 2004 3:23 pm
Location: Palm beach, Florida
Post
by josh » Sun Dec 25, 2005 12:56 am
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