• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

htaccess not working

Q

qxxx

Guest
Hello,

i have a server (suse 9) with plesk, i tried to uninstall it but i killed my server... after new install (again with plesk) i try to live with it :(


here is 1 of many problems i have:
if i put a .htaccess file the and visit then the site it shows a 500 error!.. internal server error, if i remove the file everything is ok.

i need the .htaccess file for symlinks. here is my htaccess..:


PHP:
RewriteEngine ON
RewriteBase /
RewriteRule ^a_([0-9]*).html$ test.php [L,NC]
RewriteRule fun-([^/]*)-([^/]*).html detail.php?id=$1 [L,NC]
RewriteRule b-([^/]*).html /themes/default/bewerten1.php?id=$1 [L,NC]
RewriteRule kategorie-([^/]*).html browse.php?cat=$1 [L,NC]
RewriteRule /(.*).html$   /$1 [L,R]
RewriteRule /images/(.*)$   /images/$1 [L,R]
please help. thank you.
 
Hi

If you are still gettin that 500 error it means that there is a problem with your Rewriterule. try knocking off and adding the rules one by one.
for eg:
the commented rule below works fine on my localhost but not the public server. the secon rule works fine on the server. and it used to give me a 500 error.

RewriteEngine On
RewriteBase /

#RewriteRule ^(.*?)\.html$ index.php?q=$1
RewriteRule ^(.*)\.html$ index.php?q=$1

Hope you get a little help by this

Thanks
Raj D'souza
 
Back
Top