Hello i have problem with my htaccess configuration in my own mvc. IDK what i do wrong? All time i have this message 500:
Internal Server Error
The server encountered an internal error or misconfiguration and was
unable to complete your request.
Please contact the server administrator, admin@localhost and inform
them of the time the error occurred, and anything you might have done
that may have caused the error.
More information about this error may be available in the server error
log.
I want to make url rewrite to index.
Try to do somthing like this
www.example.com/index.php/controller/method/param
www.example.com/index.php?url=controler
My .htaccess look like this:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+) index.php?url=$l [QSA,L]
What i do wrong ?? I read http://httpd.apache.org/docs/current/rewrite/flags.html and do how is there explained.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…