Jump to content

MattEngland2022

Clients
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

MattEngland2022's Achievements

  1. I have been trying to convert the htaccess to nginx rules, based on what others have posted i have tried the following but with no luck. Is there a recommended nginx config # IPS API location /forum/api/ { try_files $uri $uri/ @api; } # IPS API LOCATION location @api { rewrite ^ /forum/api/index.php?$args last; }
  2. This server is an apache server, nginx disabled or it should be
  3. Hi Both mod_setenvif and mod_rewrite are enabled and file permission is set to 644 on the .htaccess file.
  4. Hi All We are having an issue enabling the API, The .htaccess has been uploaded to /forum/api as mentioned and file permissions have been set but we just keep getting the following screen. Contents of the htaccess is also below <IfModule mod_setenvif.c> SetEnvIf Authorization .+ HTTP_AUTHORIZATION=$0 </IfModule> <IfModule mod_rewrite.c> Options -MultiViews RewriteEngine On RewriteBase /forum/api/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L] </IfModule>
×
×
  • Create New...