I’m trying to get an Apache rewrite to work properly. I’m trying to intercept what would be a directory listing, and instead send it to the index.php program for processing.
http://www.moviemaker.com/magazine/issues/62/
(This address happens to also be a directory on the server.)
RewriteCond $1 ^magazine/issues/(..?.?)$
RewriteRule ^/magazine/issues/(...) <a href="http://www.moviemaker.com/index.php/magazine/issue_forward/$1">http://www.moviemaker.com/index.php/magazine/issue_forward/$1</a> [L]Any idea why this wouldn’t work? (i.e. I get the directory forbidden message)? I’m sure the RewriteCond is working, because a different RewriteRule does get acted upon…
TTFN
Travis