Hi,
I'm a little stuck with with my .htaccess redirect. It was working find while I was with PHP4 but the recent move to a new host with PHP5 have changed things for which I've no clue.
I run a URL shortening service for NSFW links so they're a little safer at nsfw.in Here, for a URL like http://nsfw.in/e72b0f (this one is actually SFW) it gives me http://nsfw.in/forward.php?e72b0f
Earlier with my .htaccess file, the "forward.php?" was masked (hidden). How can I bring back this behavior. Here is the .htaccess for your reference.
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} \/([0-9a-z]{6})$ [NC]
RewriteRule ^(.*) http://nsfw.in/forward.php?%1 [L]
Thanking in anticipation. Btw, I also do not rule out the issue being in the PHP Script. The developer that did it for me is too busy to look at it.