Converting Fork-CMS htaccess file to Lighttpd
Added by Carroarmato0 over 14 years ago
I'm trying to convert the redirect directives that fork-cms uses to something equivalent in Lighttpd to make it work.
These are the rules it uses. Can anyone with a beter understanding help me convert this?
- backend is an existing folder, but it should be handled as all urls
RewriteCond %{REQUEST_URI} ^/backend/$
RewriteRule . index.php [NC,L]
- handle urls
RewriteCond %{REQUEST_URI} !^$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [NC,L]
Replies (1)
RE: Converting Fork-CMS htaccess file to Lighttpd - Added by mlitn over 14 years ago
You could use the lighttpd errorhandler to accomplish this