I've created a .htaccess file for the URL rewrite, and I tested it using http://htaccess.madewithlove.be/ and it says the URL rewrite is correct, but when testing the page keeps giving me a 404 error.
Here is the .htaccess:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^article/(.*)$ /article/index.php?id=$1
The URL rewrite I need is the following:
http://www.mydomain.com/article/test // To redirect to:
http://www.mydomain.com/article/index.php?k=test
Can anyone tell me what I am messing up? Thank You!