Eduardo A Posted May 20, 2018 Share Posted May 20, 2018 (edited) Hola, cada vez que activo la opción URL amigable de prestashop cuando voy a la home me aparece: Not Found The requested URL /es/ was not found on this server. Edited June 25, 2018 by nadie Moderación del foro edita el título añadiendo la palabra "Solucionado" al título del mismo (el autor indica en uno de sus mensaje que ha solucionado el problema). (see edit history) Link to comment Share on other sites More sharing options...
gusman126 Posted May 20, 2018 Share Posted May 20, 2018 En el mismo apartado, abajo de todo, prueba a dar al boton de generar archivo robots.txt, Comprueba que se guarda bien y se genera el fichero htaccess en tu servidor Link to comment Share on other sites More sharing options...
Eduardo A Posted May 20, 2018 Author Share Posted May 20, 2018 (edited) Hola, he dado con el error. Tenía mal configurado el vhost. Me ha servido este tutorial de instalación: https://websiteforstudents.com/install-prestashop-on-ubuntu-17-04-17-10-with-apache2-mariadb-and-php/ antes <VirtualHost *:80> ServerName dominio-x.es ServerAdmin [email protected] RewriteEngine on -> este era el error DocumentRoot /var/www/html/ruta-a-mi-carpeta/ #<Directory /var/www/html/>AllowOverride All</Directory> </VirtualHost> tenia que poner esto: <Directory /var/www/html/ruta-a-mi-carpeta/> Options +FollowSymlinks AllowOverride All Require all granted </Directory> quedando asi <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "/var/www/html/ruta-a-mi-carpeta" ServerName midominio.es ServerAlias midominio.es <Directory /var/www/html/ruta-a-mi-carpeta/> Options +FollowSymlinks AllowOverride All Require all granted </Directory> ErrorLog /var/www/html/ruta-a-mi-carpeta/error.log CustomLog /var/www/html/ruta-a-mi-carpeta/access.log combined </VirtualHost> Edited May 20, 2018 by Eduardo A (see edit history) Link to comment Share on other sites More sharing options...
Eduardo A Posted May 20, 2018 Author Share Posted May 20, 2018 29 minutes ago, gusman126 said: En el mismo apartado, abajo de todo, prueba a dar al boton de generar archivo robots.txt, Comprueba que se guarda bien y se genera el fichero htaccess en tu servidor Gracias, pero no era eso. Lo que explicas se hacia bien. Era un tema del vhost. Link to comment Share on other sites More sharing options...
Recommended Posts