portable php html xampp lampp

portable - xampp php 7



PhP local host redireccionando a/var/www/html/index.php (2)

Adittionally, si MySQL no comienza:

sudo /etc/init.d/apache2 stop sudo /etc/init.d/mysql stop sudo /etc/init.d/proftpd stop sudo /opt/lampp/lampp start

Estoy usando la máquina Ubuntu. Estoy ejecutando lampp server para archivos php.

Tengo todos mis archivos PHP en my_folder donde tengo todos mis códigos en /opt/lampp/htdocs/my_folder incluyendo el archivo de índice en /opt/lampp/htdocs/my_folder/index.php .

Quería verificar mis códigos ejecutando http://localhost/index.php en el navegador Chrome, pero por alguna razón me sigue dirigiendo al archivo /var/www/html/html.index . ¿Puede alguien ayudarme a resolver este problema?

Gracias por adelantado.


agrega esto a tu configuración de Apache.

DocumentRoot /opt/lampp/htdocs/my_folder <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /opt/lampp/htdocs/my_folder> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from all </Directory>