kriboy Posted May 12, 2008 Share Posted May 12, 2008 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 More sharing options...
al_bundy75 Posted May 12, 2008 Share Posted May 12, 2008 moi aussi j'ai le meme problème mais en local (sous Windows XP)... je pense que le module rewrite n'est pas installé ou pas activé mais je sais pas comment faire. Link to comment Share on other sites More sharing options...
kriboy Posted May 13, 2008 Author Share Posted May 13, 2008 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now