I want to redirect all the URLs starting from specific characters. For instance: www.example.com/abc-apple www.example.com/abc-bat.html www.example.com/abc-cat.php ....... ....... All of the URLs above starts with "abc-" I want a redirect code to redirect all URLs starting from "abc-" to a single URL i.e. www.example.com/all
The following code should work RewriteEngine On RewriteRule ^abc-(.*) /newpage.php [R=301,L] Code (markup):