• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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