> Could you explain in more detail what you're trying to do and what's
> happening? I don't quite understand what you're asking.
>
sorry, my bad english!
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]*)?/?([^/]*)?/?([^/]*)?/?([^/]*)?/?([^/]*)?/?.*?
index.php?show=$1&s2=$2&s3=$3&s4=$4&s5=$5 [L]
this works!
ich I want to see this URL: hallo/test/support/
I get: index.php?show=hallo&s2=test&s3=support
but the problem is that everybody can start the fils directly (for example:
support.php)
so I have do remove "RewriteCond %{REQUEST_FILENAME} !-f"
then I have:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]*)?/?([^/]*)?/?([^/]*)?/?([^/]*)?/?([^/]*)?/?.*?
index.php?show=$1&s2=$2&s3=$3&s4=$4&s5=$5 [L]
but if I now want to see hallo/test/support/
I get: index.php?show=&s2=&s3=<!-- ~MESSAGE_AFTER~ -->
>> Stay informed about: Mod rewrite