• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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