• 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.

Problem with Alias in .htaccess

Samynou

New Pleskian
Hello,

I use Plesk 11.0.9 on CentOS 6.3

I'm trying to set an Alias in a .htaccess like this :
Alias "/inscription" "/phplist"

But I have a 500 Error and in the error_log i have this :
[alert] [client XX.XX.XX.XX] /var/www/vhosts/domain.com/.htaccess: Alias not allowed here.

What can i do ?
Thanks
 
Last edited:
f you want to have just a simple 301 redirection then you can try adding this to your .htaccess :

Code:
redirect 301 /contact_new.html http://www.mysite.com/contact/
or you can do it like this:
Code:
RewriteEngine On
RewriteBase /
RewriteRule ^contact_new.html$ /contact/ [L]

I hope this helps.
 
Back
Top