Whenever I add the [NC] flag in .htaccess, it causes an Internal Server Error.
This works:
Redirect 301 /gabf http://www.mydomain.com/category/gabf
but this doesn’t:
Redirect 301 /gabf http://www.mydomain.com/category/gabf [NC]
How can I allow things like /gabf, /GABF, /Gabf, etc?
Use this code:
before:
WordPress overwrite all RewriteRule to index.php. If you put that first, this “gabf” rule will be executed first and since it’s the last rule it will stop.
R=301 = Redirect Permanent and NC = No Case (case insensitive)