@cali_green
To redirect a URL with a forward slash in .htaccess, you can use the following code:
1 2 |
RewriteEngine On RewriteRule ^old-url/$ /new-url [L,R=301] |
In this code:
Make sure to replace old-url
and new-url
with the actual URLs you want to redirect. You can add this code to your .htaccess file located in the root directory of your website.