5 ms·
How can I bypass images or specific files using ToroPhp? I usually add this lines at my .htaccess: RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUES
by devgutt 14y ago
How can I bypass images or specific files using ToroPhp? I usually add this lines at my .htaccess:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
- sjs382 14y agoYou do just that. When setting your .htaccess to route all URLs through Toro, use a snippet like: RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php