Welcome Guest, Not a member yet? Register   Sign In
Route , remove index.php and use adminer
#2

(This post was last modified: 11-25-2018, 03:14 AM by jreklund.)

Have a go with this one instead. It check if it's an actual file or folder. If that's the case. Don't redirect it to index.php.

Code:
<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond $1 !^(index\.php|images|robots\.txt)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L,QSA]
</IfModule>
Reply


Messages In This Thread
RE: Route , remove index.php and use adminer - by jreklund - 11-25-2018, 03:14 AM



Theme © iAndrew 2016 - Forum software by © MyBB