I have never gotten into regex stuff or apache rewrite stuff but I've done a big ecommerce site for a customer and he's just now asking me if I can do URL rewrites for his store. I have 2 that I need and it would be of great help if someone could tell me if it is even possible to rewrite how he wants it.
The product details URL is currently: product/details/3/royal-blue-choir-stole
And he wants it to just be... /royal-blue-choir-stole
And the second one is the category pages. They are currently
category/view/choir-stoles
and he wants them to just be /choir-stoles
Is this possible? The full url to the site is currently http://www.stoles.com/stoles (username alex, password superman) if you want to take a look at what's currently done. Its programmed in codeigniter.
Currently it has the following rewrites to get rid of the index.php in the codeigniter URL's...
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]

