I have the following URL:
www.example.com/category/news/article-name
I need to drop the category/news and redirect to:
www.example.com/article-name
I have the following RewriteRule working:
RewriteRule ^category/news/(.*)$ https://example.com/$1 [R=301,L]
However, I need to edit the RewriteRule above to allow for the URL below to be loaded without redirecting:
www.example.com/category/news/
Currently this URL redirects to www.example.com
Is this possible?