Hello,
I am trying to take a url that looks like this: huge-du.bz/testing/articles/index.php?uid=Article
And make it show as this: huge-du.bz/articles/Article
Here is my .htaccess file placed in the articles folder:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^articles/([^/]*)/$ /index.php?uid=$1 [L]
</IfModule>
For some reason it isn’t working and just shows up with the original url. Can anybody help?
Thanks!
do I still need the tages in my .htaccess?