Errore SEO url
Moderatore: mod Generali
Errore SEO url
Ciao ragazzi,
Sono andato al manicomio ma non sono riuscito a trovare la soluzione......ecco il problema... :
se voglio accedere alla recensioni navigando normalmente nel sito, non riscontro nessun problema, se invece faccio prima una ricerca per produttore al momento di accedere alle recensioni esce errore ...... da qui potete vedere l'empio pratico http://www.ingrossoshop.com/shop/catalo ... _info.html .
ho provato a modificare il file .htaccess ma forse sbaglio ....
qualcuno mi sà consigliare da dove iniziare ...
grazie 1000
Sono andato al manicomio ma non sono riuscito a trovare la soluzione......ecco il problema... :
se voglio accedere alla recensioni navigando normalmente nel sito, non riscontro nessun problema, se invece faccio prima una ricerca per produttore al momento di accedere alle recensioni esce errore ...... da qui potete vedere l'empio pratico http://www.ingrossoshop.com/shop/catalo ... _info.html .
ho provato a modificare il file .htaccess ma forse sbaglio ....
qualcuno mi sà consigliare da dove iniziare ...
grazie 1000
-
- membro Veteran
- Messaggi: 937
- Iscritto il: 21/03/2004, 1:00
- Località: Italia
- Contatta:
Re: Errore SEO url
Prova a postare l'htaccess (togliendo i tuoi riferimenti).dalk ha scritto:Ciao ragazzi,
Sono andato al manicomio ma non sono riuscito a trovare la soluzione......ecco il problema... :
se voglio accedere alla recensioni navigando normalmente nel sito, non riscontro nessun problema, se invece faccio prima una ricerca per produttore al momento di accedere alle recensioni esce errore ...... da qui potete vedere l'empio pratico http://www.ingrossoshop.com/shop/catalo ... _info.html .
ho provato a modificare il file .htaccess ma forse sbaglio ....
qualcuno mi sà consigliare da dove iniziare ...
grazie 1000
Re: Errore SEO url
ciao....grazie per il messaggio....ecco il codice :
# 'All' with also work. (This configuration is in the
# apache/conf/httpd.conf file)
# The following makes adjustments to the SSL protocol for Internet
# Explorer browsers
<IfModule mod_setenvif.c>
<IfDefine SSL>
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
</IfDefine>
</IfModule>
# Fix certain PHP values
# (commented out by default to prevent errors occuring on certain
# servers)
<IfModule mod_php4.c>
php_value session.use_trans_sid 0
php_value register_globals 1
php_flag display_errors On
php_flag track_errors On
</IfModule>
#CRE_SEO Install Begin
DirectoryIndex index.php default.php
Options +FollowSymLinks
RewriteEngine on
RewriteBase /shop/catalog/
#cre SEO check for images and skip all the other rules for performance reasons only
RewriteRule ^.*\.gif|\.jpg|\.png|\.css|\.php$ - [L]
# cre SEO reformats for product_info.html pages
RewriteRule ^p([0-9]+_?[0-9]*)/(.*)/product_info\.html$ product_info.php?products_id=$1 [QSA,L]
RewriteRule ^p([0-9]+_?[0-9]*)/(.*)/product_info\.html$ product_info.php?products_id=$1 [QSA,L]
RewriteRule ^(.*)/c([^/]*)/p([0-9]+_?[0-9]*)/(.*)/product_info\.html$ product_info.php?cPath=$2&products_id=$3 [QSA,L]
# cre SEO reformat for index.html pages
RewriteRule ^m([0-9]+_?[0-9]*)/?(.*)/p([0-9]+_?[0-9]*)/(.*)/index\.html$ index.php?manufacturers_id=$1&products_id=$3 [QSA,L]
RewriteRule ^m([0-9]+_?[0-9]*)/(.*)/index\.html$ index.php?manufacturers_id=$1 [QSA,L]
RewriteRule ^(.*)/c([^/]*)/p([0-9]+_?[0-9]*)/(.*)/index\.html$ index.php?cPath=$2&products_id=$3 [QSA,L]
RewriteRule ^(.*)/c([^/]*)/index\.html$ index.php?cPath=$2 [QSA,L]
# cre SEO reformat for information.html pages
RewriteRule ^i([0-9]+_?[0-9]*)/(.*)/information\.html$ information.php?info_id=$1 [QSA,L]
# cre SEO reformat for pages.html pages
RewriteRule ^p([0-9]+_?[0-9]*)/(.*)/pages\.html$ pages.php?pID=$1 [QSA,L]
RewriteRule ^(.*)/c([^/]*)/p([0-9]+_?[0-9]*)/(.*)/pages\.html$ pages.php?cID=$2&pID=$3 [QSA,L]
RewriteRule ^(.*)/c([^/]*)/pages\.html$ pages.php?cID=$2 [QSA,L]
# cre SEO reformat for articles.html pages
RewriteRule ^(.*)/t([^/]*)/a([0-9]+_?[0-9]*)/(.*)/articles\.html$ articles.php?tPath=$2&articles_id=$3 [QSA,L]
RewriteRule ^(.*)/t([^/]*)/articles\.html$ articles.php?tPath=$2 [QSA,L]
# cre SEO reformat for article_info.html pages
RewriteRule ^a([0-9]+_?[0-9]*)/(.*)/article_info\.html$ article_info.php?articles_id=$1 [QSA,L]
RewriteRule ^(.*)/t([^/]*)/article_info\.html$ article_info.php?tPath=$2 [QSA,L]
# cre SEO reformats for product_reviews.html pages
RewriteRule ^p([0-9]+_?[0-9]*)/(.*)/product_reviews\.html$ product_reviews.php?products_id=$1 [QSA,L]
RewriteRule ^(.*)/c([^/]*)/p([0-9]+_?[0-9]*)/(.*)/product_reviews\.html$ product_reviews.php?products_id=$3 [QSA,L]
# cre SEO reformats for product_reviews_info.html pages
RewriteRule ^p([0-9]+_?[0-9]*)/(.*)/review([0-9]+_?[0-9]*)/product_reviews_info\.html$ product_reviews_info.php?products_id=$1&reviews_id=$3 [QSA,L]
#cre SEO catch all in case other rules did not match
RewriteRule ^(product_info|index|information|pages|articles|article_info|product_reviews|product_reviews_info)\.html$ $1.php [QSA,L]
# 'All' with also work. (This configuration is in the
# apache/conf/httpd.conf file)
# The following makes adjustments to the SSL protocol for Internet
# Explorer browsers
<IfModule mod_setenvif.c>
<IfDefine SSL>
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
</IfDefine>
</IfModule>
# Fix certain PHP values
# (commented out by default to prevent errors occuring on certain
# servers)
<IfModule mod_php4.c>
php_value session.use_trans_sid 0
php_value register_globals 1
php_flag display_errors On
php_flag track_errors On
</IfModule>
#CRE_SEO Install Begin
DirectoryIndex index.php default.php
Options +FollowSymLinks
RewriteEngine on
RewriteBase /shop/catalog/
#cre SEO check for images and skip all the other rules for performance reasons only
RewriteRule ^.*\.gif|\.jpg|\.png|\.css|\.php$ - [L]
# cre SEO reformats for product_info.html pages
RewriteRule ^p([0-9]+_?[0-9]*)/(.*)/product_info\.html$ product_info.php?products_id=$1 [QSA,L]
RewriteRule ^p([0-9]+_?[0-9]*)/(.*)/product_info\.html$ product_info.php?products_id=$1 [QSA,L]
RewriteRule ^(.*)/c([^/]*)/p([0-9]+_?[0-9]*)/(.*)/product_info\.html$ product_info.php?cPath=$2&products_id=$3 [QSA,L]
# cre SEO reformat for index.html pages
RewriteRule ^m([0-9]+_?[0-9]*)/?(.*)/p([0-9]+_?[0-9]*)/(.*)/index\.html$ index.php?manufacturers_id=$1&products_id=$3 [QSA,L]
RewriteRule ^m([0-9]+_?[0-9]*)/(.*)/index\.html$ index.php?manufacturers_id=$1 [QSA,L]
RewriteRule ^(.*)/c([^/]*)/p([0-9]+_?[0-9]*)/(.*)/index\.html$ index.php?cPath=$2&products_id=$3 [QSA,L]
RewriteRule ^(.*)/c([^/]*)/index\.html$ index.php?cPath=$2 [QSA,L]
# cre SEO reformat for information.html pages
RewriteRule ^i([0-9]+_?[0-9]*)/(.*)/information\.html$ information.php?info_id=$1 [QSA,L]
# cre SEO reformat for pages.html pages
RewriteRule ^p([0-9]+_?[0-9]*)/(.*)/pages\.html$ pages.php?pID=$1 [QSA,L]
RewriteRule ^(.*)/c([^/]*)/p([0-9]+_?[0-9]*)/(.*)/pages\.html$ pages.php?cID=$2&pID=$3 [QSA,L]
RewriteRule ^(.*)/c([^/]*)/pages\.html$ pages.php?cID=$2 [QSA,L]
# cre SEO reformat for articles.html pages
RewriteRule ^(.*)/t([^/]*)/a([0-9]+_?[0-9]*)/(.*)/articles\.html$ articles.php?tPath=$2&articles_id=$3 [QSA,L]
RewriteRule ^(.*)/t([^/]*)/articles\.html$ articles.php?tPath=$2 [QSA,L]
# cre SEO reformat for article_info.html pages
RewriteRule ^a([0-9]+_?[0-9]*)/(.*)/article_info\.html$ article_info.php?articles_id=$1 [QSA,L]
RewriteRule ^(.*)/t([^/]*)/article_info\.html$ article_info.php?tPath=$2 [QSA,L]
# cre SEO reformats for product_reviews.html pages
RewriteRule ^p([0-9]+_?[0-9]*)/(.*)/product_reviews\.html$ product_reviews.php?products_id=$1 [QSA,L]
RewriteRule ^(.*)/c([^/]*)/p([0-9]+_?[0-9]*)/(.*)/product_reviews\.html$ product_reviews.php?products_id=$3 [QSA,L]
# cre SEO reformats for product_reviews_info.html pages
RewriteRule ^p([0-9]+_?[0-9]*)/(.*)/review([0-9]+_?[0-9]*)/product_reviews_info\.html$ product_reviews_info.php?products_id=$1&reviews_id=$3 [QSA,L]
#cre SEO catch all in case other rules did not match
RewriteRule ^(product_info|index|information|pages|articles|article_info|product_reviews|product_reviews_info)\.html$ $1.php [QSA,L]
-
- membro Veteran
- Messaggi: 937
- Iscritto il: 21/03/2004, 1:00
- Località: Italia
- Contatta:
Re: Errore SEO url
Che contributions è?
Re: Errore SEO url
ciao loris..........
non è una contrib standard.....la presi da un sito, che in verità non mi ricordo neanche come l'ho trovata, all'inizio sembrava tutto funzionare per il meglio, poi ho trovato l'errore.....secondo tè dipende dal file .htaccess o può dipendere anche da altri file modificati o aggiunti per installarla ??
grazie per le risposte.
non è una contrib standard.....la presi da un sito, che in verità non mi ricordo neanche come l'ho trovata, all'inizio sembrava tutto funzionare per il meglio, poi ho trovato l'errore.....secondo tè dipende dal file .htaccess o può dipendere anche da altri file modificati o aggiunti per installarla ??
grazie per le risposte.
-
- membro Veteran
- Messaggi: 937
- Iscritto il: 21/03/2004, 1:00
- Località: Italia
- Contatta:
Re: Errore SEO url
Non ne ho idea, secondo me ti conviene scaricare Ultimate Seo url o comunque seguire alcuni consigli che trovi nel forum:dalk ha scritto:ciao loris..........
non è una contrib standard.....la presi da un sito, che in verità non mi ricordo neanche come l'ho trovata, all'inizio sembrava tutto funzionare per il meglio, poi ho trovato l'errore.....secondo tè dipende dal file .htaccess o può dipendere anche da altri file modificati o aggiunti per installarla ??
grazie per le risposte.
viewtopic.php?f=19&t=10636
viewtopic.php?f=10&t=10526
Re: Errore SEO url
grazie loris...
farò qualche ultimo tentativo poi cambierò contrib.......
grazie
farò qualche ultimo tentativo poi cambierò contrib.......
grazie
Re: Errore SEO url
sembra cre-loaded piû che osc standard.
La funzione CERCA si trova sotto al logo Oscommerce italia in questa pagina. - I Love Marketing!
I miei preferiti: internet marketing blog - biancheria da letto - prodotti tipici piemonte - vini piemontesi - roero arneis
I miei preferiti: internet marketing blog - biancheria da letto - prodotti tipici piemonte - vini piemontesi - roero arneis
Re: Errore SEO url
ciao hsg26,
neanche tu sai indicarmi dove cercare di modificare per correggere l'errore ((...
ciao e grazie...
neanche tu sai indicarmi dove cercare di modificare per correggere l'errore ((...
ciao e grazie...
-
- membro Veteran
- Messaggi: 937
- Iscritto il: 21/03/2004, 1:00
- Località: Italia
- Contatta:
Re: Errore SEO url
Mi sa che devi proprio cambiare script...dalk ha scritto:ciao hsg26,
neanche tu sai indicarmi dove cercare di modificare per correggere l'errore ((...
ciao e grazie...