I have this .htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
How can I convert it to run my website through Lighttpd ?
Thank you so much!
feedback
|
This question came from our site for professional and enthusiast programmers.
|
You should be able to use:
Make sure to enable mod_rewrite in lighttpd.conf and reload lighty.
| |||
feedback
|