Re: redirect from folder only to index in parent folder
Oh, Apache and it's query strings... you would probably need to use mod_rewrite then
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/pictures/.*/$ [OR]
RewriteCond %{REQUEST_URI} ^/pictures/.*/index.php$
RewriteRule ^/pictures/([a-z]*)/ /pictures/index.php?fd=$1
|