By default, Lamp server is not configured to read .htaccess files so for example, you cannot use url rewriting

But the installation allows to you to include config files to overwrite the apache base configuration.

The files have to uploaded in /apps/www.appboxname.appboxes.co/conf.d directory.

Example of file to read .htaccess and some other options httpd.conf

1 - <Directory /home/lamp/public_html>
2 - Options Indexes FollowSymLinks
3 - AllowOverride All
4 - Require all granted
5 - </Directory>

1.    Indicates the directory on the server, on our case it is
/home/lamp/public_html

2.    Indexes means a directory can be show as list if it contains no index.php or index.html page.
FollowSymLinks means if a directory is a symbolic link, the link must be followed (usefull for url rewriting).

3.    AllowOverride directive is used to allow the use of .htaccess

4.    Require all granted allows everybody to access directory

5.    Closes

Create this file in notepad and rename it to httpd.conf, then upload it to the /apps/www.appboxname.appboxes.co/conf.d directory.

Don’t forget to restart your LAMP server in the Appboxes interface for changes to take effect.

User Submitted - Philippe


We've setup a chat system on one of our AppBoxes so you can get status updates and hangout with other users and ourselves, feel free to ask anything and maybe the community will be able to provide further support.

Click here to sign up

Was this answer helpful? 1 Users Found This Useful (2 Votes)