Web server Apache fail

I logged onto studio and saw apache server fail. It says install rewrite module for apache. How do I do this?

ebxdupk9ft7wnu7rcs4estffd2cktsjc.png

  • 775
  • More
Attachments
Replies (3)
    • do you have access to WHM? you can also set in .htaccess

      • Options -MultiViews -Indexes
        
        
        <IfModule mod_php5.c>
            php_flag allow_url_include Off
            php_flag register_globals Off
        </IfModule>
        
        
        <IfModule mod_rewrite.c>
            RewriteEngine on
            RewriteRule ^m/(.*)$  modules/index.php?r=$1 [QSA,L]
            RewriteRule ^page/(.*)$  page.php?i=$1 [QSA,L]
            RewriteRule ^s/([a-zA-Z0-9_]+)/([a-zA-Z0-9\.]+)  storage.php?o=$1&f=$2   [QSA,L]
        
        
            RewriteCond %{REQUEST_FILENAME} -f [OR]
            RewriteCond %{REQUEST_FILENAME} -d
            RewriteRule .+ - [L]
            RewriteRule ^(.+)$ r.php?_q=$1 [QSA,L]
        </IfModule>
        
        
        AddType image/svg+xml svg
        
        • Hello @RJ Arsenault !

          If in your UNA the links like page/view-person-profile?id=10 work fine then it means that your modrewrite is OK. This warning appears very often due to the hard detection of this module's existence on the server with the tools of PHP.

          Login or Join to comment.