I am very new to apache and mod re-write I am trying to make pretty links using .htaccess. My URL looks like this:
http://example.com/single_picture.php?name=Testing-123&cat_id=1
I want to make it look like
http://example.com/pictures/Testing-123/
That is just the name. Here is what I have put in my .htaccess file but it is not working.
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^pictures/(\s+)*$ ./single_picture.php?name=$1&cat_id=$2
How do I do it? Ahmar