• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Question Install mod_rewrite on Plesk?

LionKing

Regular Pleskian
Server operating system version
Linux Ubunto 22.04
Plesk version and microupdate number
Plesk Obsidian Web Host Edition Version 18.0.57 Update #5
Well as the subject head lines say's; so my question is pretty straight forward....

So how do you do this? ;)

Thanks in advance.
Kind regards
LionKing
 
That's a web server component that should automatically be present on all modern web servers.

How to test if it is availabe:

1. Create a .txt file "mod_rewrite.txt" in the root folder (document root) of your website with this content:

mod_rewrite is activated.

2. If a .htaccess file already exists in the root folder, rename the file so that it is not unintentionally changed by the test in the following step.

3. Create an .htaccess file in the root folder (document root) of your website with this content:

RewriteEngine On
RewriteRule ^.*$ mod_rewrite.txt

4. Open the website in the browser. If mod_rewrite is activated - which is the case by default in all webspace accounts - you will see the following output:

mod_rewrite is activated.

5. Delete your .htaccess file and rename the backup created in step (2.) back to .htaccess.
 
Thanks a lot @Peter Debik
It is very appreciated.

I'm asking because its a requirement to install SuiteCRM 8.5, (SuiteCRM is a free to use open source fork of SugarCRM).

Not really sure though what to add into that txt file that you mention though because the mod rewrite rules will highly likely reside in SuiteCRM's .htaccess file from what I am guessing.
 
@elemis those are just example rules. The guide provides instructions on how to add rules. Depending on what the end goal is those rules could differ. From what I understand you are having issues with SuiteCRM not detecting the mod_rewrite module. You an confirm if it is enabled from Tools & Settings >Apache Web Server Settings > "rewrite" in the list of modules.
 
Back
Top