skategui Posted April 18, 2013 Share Posted April 18, 2013 Hey, I installed URL Rewrite and ISAPI rewrite manager. I linked my .htacess to my webiste on ISAPI rewrite but the friendly URL is not working anymore. I used phpinfo() and mod_rewrite is not enabled, neither loaded. How should i do for setting the mod_rewrite correctly ? Thank in advance. Version prestashop : 1.5. Link to comment Share on other sites More sharing options...
Herland Posted May 25, 2013 Share Posted May 25, 2013 I need an answer on this one too lol I need the input parameters of .htaccess so I can get on working the friendly URL Link to comment Share on other sites More sharing options...
Herland Posted May 25, 2013 Share Posted May 25, 2013 I found this to be added in the .htaccess , but there's a problem in my website, the product images and other images are just not being linked properly. here is the code: # URL rewriting module activation RewriteEngine on RewriteCond %{REQUEST_METHOD} !^(TRACE|TRACK|GET|POST|HEAD)$ RewriteRule .* - [F] RewriteBase / Options +FollowSymLinks # URL rewriting rules RewriteRule ^([a-zA-Z0-9-]*)/([0-9]+)\-([a-zA-Z0-9-]*)\.html(.*)$ product.php?id_product=$2$4 [L,E] 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 [QSA,L,E] RewriteRule ^content/([0-9]+)\-([a-zA-Z0-9-]*)(.*)$ cms.php?id_cms=$1 [QSA,L,E] RewriteRule ^([0-9]+)__([a-zA-Z0-9-]*)(.*)$ supplier.php?id_supplier=$1$3 [QSA,L,E] RewriteRule ^([0-9]+)_([a-zA-Z0-9-]*)(.*)$ manufacturer.php?id_manufacturer=$1$3 [QSA,L,E] # Catch 404 errors ErrorDocument 404 /404.php Link to comment Share on other sites More sharing options...
Herland Posted May 25, 2013 Share Posted May 25, 2013 Bingo, answer was simple. in the BO, Go to Tools -> Generators ; make sure the Friendly URL is checked, now click on "Generate .htaccess file", this will erase the previous .htaccess file. There you go. 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