Jump to content

( RESOLU ) Url rewriting


Recommended Posts

J'essaie d heberger un e commerce avec prestashop sur nuxit.

Cela fonctionne parfaitement en modifiant le .htacces pour la prise en compte du php5.

Malheureusement l url rewriting me pose probleme.

La page demandée réecrite apparait bien en bas de mon navigateur mais me dirige vers une erreur  404.

 

The requested URL /nomdusite.nuxit.net/prestashop/category.php was not found on this server.

 

mon .htacces :

 

AddHandler x-httpd-php5 .php      ====================== pour la prise en compte php5

AddType application/x-httpd-php5 .php   

 

# URL rewriting module activation     =====================================.htacces d origine de prestashop

RewriteEngine on

 

# URL rewriting rules

RewriteRule ^([0-9]+)-([a-zA-Z0-9-]*).html(.*)$ product.php?id_product=$1$3 [L,E]

RewriteRule ^([0-9]+)-([a-zA-Z0-9-]*)(.*)$ category.php?id_category=$1$3 [L,E]

RewriteRule ^([0-9]+)__([a-zA-Z0-9-]*)(.*)$ supplier.php?id_supplier=$1$3 [L,E]

RewriteRule ^([0-9]+)_([a-zA-Z0-9-]*)(.*)$ manufacturer.php?id_manufacturer=$1$3 [L,E]

 

# Catch 404 errors

ErrorDocument 404 /404.php

 

Que dois je modifier ?

merci

Link to comment
Share on other sites

C'est bon après de longues recherches j'ai trouvé ! :)

 

AddHandler x-httpd-php5 .php      ====================== pour la prise en compte php5

AddType application/x-httpd-php5 .php   

 

# URL rewriting module activation     =====================================.htacces d origine de prestashop

RewriteEngine on

 

# URL rewriting rules

RewriteBase ------------------------------ a rajouter si mis a la racine de ton site ou alors   RewriteBase /nom du dossier/si dans un autre dossier

RewriteRule ^([0-9]+)-([a-zA-Z0-9-]*).html(.*)$ product.php?id_product=$1$3 [L,E]

RewriteRule ^([0-9]+)-([a-zA-Z0-9-]*)(.*)$ category.php?id_category=$1$3 [L,E]

RewriteRule ^([0-9]+)__([a-zA-Z0-9-]*)(.*)$ supplier.php?id_supplier=$1$3 [L,E]

RewriteRule ^([0-9]+)_([a-zA-Z0-9-]*)(.*)$ manufacturer.php?id_manufacturer=$1$3 [L,E]

 

# Catch 404 errors

ErrorDocument 404 /404.php

 

 

Link to comment
Share on other sites

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...