1 rec9140 Mar 28, 2010 01:16
3 rec9140 Mar 31, 2010 17:16
OK.. finally had a chance to mess with this...
Removing the followsymlinks and changing to:
RewriteRule ^ blog/blogs/blog.php [NC]
It now WORKS for the referrers that end up at the same site/domain.
Thanks!
:D
ie:
lusersite.com - > mysite1.com - > blog
The problem I've got now is for a 2nd domain on a different server.
lusersite.com - > mysite2.com - > error
Apache wants to append a portion of the URL on to URL I am redirecting to! :>
like this:
http://www.domin.info/blog/blogs/blog.php?title=somspewagefromthelink
I just want
http://www.domin.info/blog/blogs/blog.php
or
http://www.domin.info/blog/blogs/
Same leakage with
RewriteRule ^ http://www.domain2.info/blog/blogs/blog.php [NC,L]
I juts want to nuke off the leakage of a portion of the original link thats not needed..
I tried:
RewriteRule ^ http://www.domin.info/blog/blogs/$ [NC,L]
RewriteRule ^ http://www.domin.info/blog/blogs/blog.php$ [NC]
Since $ = end? Obviously its not the END I think it is! :)
Still no joy
black art (thats a quote from the Apache docs....) no kidding
Thanks!
Welcome to the forums.
First see if removing "Options +FollowSymlinks" fixes server error.
- try to add "RewriteBase /"
- see if this works better
or