View Single Post
  #9  
Old 10-15-2014, 07:28 AM
 
Phil Richman Phil Richman is offline
 

Advanced Member
  
Join Date: May 2012
Posts: 94
 

Default Re: Clean Url settings

Quote:
Originally Posted by cflsystems
The line

RewriteRule ^((([/_a-z0-9-]+)/)?([_a-z0-9-]+)/)?([_a-z0-9-]+)(\.(htm|html))?$ cart.php?url=$5&last=$4&rest

looks for only htm and html to rewrite url. You can try adding hhh to see if it will work - if it does it is definitely this rul

RewriteRule ^((([/_a-z0-9-]+)/)?([_a-z0-9-]+)/)?([_a-z0-9-]+)(\.(hhh|htm|html))?$ cart.php?url=$5&last=$4&rest

You can also try

RewriteRule ^((([/_a-z0-9-]+)/)?([_a-z0-9-]+)/)?([_a-z0-9-]+)(\.(\/|htm|html))?$ cart.php?url=$5&last=$4&rest

for the / but I am guessing this may get in the way of categories, not sure
I tried your htaccess edit with .hhh and it worked. When I tried the change for / it returned a 404.
__________________
Ver 5.2.6
Reply With Quote