Koristim Wamp server i kada skinem neku scriptu sa neta PHP on mi uvek ovo izbacuje . Znam da je u pitanju .htaccess ali kako to da regulisem ?
Citat:
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.
A evo i htaccess-a
RewriteEngine on
# Main Links
RewriteRule ^Realtor/([0-9]+)\.html$ viewuser.php?id=$1
RewriteRule ^Listing/(.+)/([0-9]+)\.html$ viewlisting.php?id=$2
RewriteRule ^Type/(.+)/([0-9]+)\.html$ search.php?type=$2
RewriteRule ^Mail/([0-9]+)\.html$ sendmessage.php?id=$1
RewriteRule ^Gallery/(.+)-([0-9]+)\.html$ image.php?req=$1&id=$2
RewriteRule ^Friend/([0-9]+)\.html$ friend.php?id=$1
# Menu Links
RewriteRule ^submit\.html$ submit.php
RewriteRule ^login\.html$ login.php
RewriteRule ^search\.html$ advsearchform.php
RewriteRule ^contacts\.html$ usersearch.php
RewriteRule ^reminder\.html$ reminder.php
RewriteRule ^calculator\.html$ calculator.php
RewriteRule ^compare\.html$ compare.php
# Modules
RewriteRule ^Location/(.+)/([0-9]+)\.html$ search.php?location=$2
RewriteRule ^Price/([0-9]+)-([0-9]+)\.html$ search.php?price_min=$1&price_max=$2
#
|