htaccess file giving forbidden

0

I'm wearing the Uniform S erver, which is a portable server, and is already with mod_rewrite active and even then my htaccess file returns forbidden.

file:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]

What's wrong?

    
asked by anonymous 24.06.2017 / 21:15

1 answer

1

Completely different try:

RewriteEngine On

RewriteBase /

RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f

RewriteRule . /index.php [L]
    
24.06.2017 / 21:17