• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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