Jump to content

HO INSTALLATO PS IN UNA SOTTO CARTELLA MA ORA COME SETTO .HTACCESS?


Recommended Posts

Ciao a tutti,
seguendo i vostri consigli ho installato in una sotto cartella.

Adesso però come devo settare .htaccess affinche andando semplicemente su www.tuodominio.com si apra già la home di prestashop?

Ho creato il file htaccess da prestashop ma sembra non funzionare sia se lo lascio nella directory di prestashop sia se lo sposto in home.

Spero possiate aiutarmi! Grazie.

Link to comment
Share on other sites

  • 7 months later...
  • 1 month later...
Come hai fatto ad installare htaccess automaticamente da presta shop?
Riguardo alla tua domanda leggi qui potrebbe esserti utile hostingsolutions.it/guide/htaccess.php


Anch'io ho un problema simile. Non so se devo installare prestashop nella root o nella cartella generica prestashop.
Inoltre, nel cpanel x,non so se devo scegliere il protocollo http://www o http://

qualcuno puo' darmi una mano?
Link to comment
Share on other sites


Adesso però come devo settare .htaccess affinche andando semplicemente su www.tuodominio.com si apra già la home di prestashop?


Fai così, creati una pagina index.php nella root principale e nel file scrivi questo:
<?php
header("location:http://www.tuosito.com/cartella_prestashop");
exit;
?>



Ciao

Link to comment
Share on other sites

  • 2 months later...

Adesso però come devo settare .htaccess affinche andando semplicemente su www.tuodominio.com si apra già la home di prestashop?


Fai così, creati una pagina index.php nella root principale e nel file scrivi questo:
<?php
header("location:http://www.tuosito.com/cartella_prestashop");
exit;
?>



Ciao




Ma questo metodo va bene poi per il posizionamento??? ho letto che google vede buoni solo i redirect 301 e questo non mi sembra un 301!?!?!?
Link to comment
Share on other sites

Io anche ho settato il file .htaccass per permettere il reindirizzamento però il tutto è veramente mooooolto lento.
Ho preso un consiglio da un forum in lingua inglese:

# URL rewriting module activation
RewriteEngine on

# Change yourdomain.com to be your main domain.
RewriteCond %{HTTP_HOST} ^(www.)?tuosito.it$

# Change 'subfolder' to be the folder you will use for your main domain.
RewriteCond %{REQUEST_URI} !^/prestashop/

# Don't change this line.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Change 'subfolder' to be the folder you will use for your main domain.
RewriteRule ^(.*)$ /prestashop/$1

# Change yourdomain.com to be your main domain again.
# Change 'subfolder' to be the folder you will use for your main domain
# followed by / then the main file for your site, index.php, index.html, etc.
RewriteCond %{HTTP_HOST} ^(www.)?tuosito.it$
RewriteRule ^(/)?$ prestashop/index.php [L]

Link to comment
Share on other sites

  • 4 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...