As the title says, how can I use .htaccess and mod_rewrite to change this?
"pages/123/some-text" to "showpage.php?index=123&title=some-text"
I have started with this:
RewriteEngine On
Options +FollowSymLinks
RewriteBase /
RewriteCond %{REQUEST_FILENAME} pages/(.*)
RewriteRule (.*) /showpage.php?index=%1 [R]
Which allows me to atleast get the parameter for index, but this fails unless I create an empty directory called pages.