The standard redirect 301 template for htaccess is usually:
redirect 301 /folder_wrong/name.html http://website.com/folder-right/name.html
With the http website included
I'm wondering if the below would work WITHOUT the http website and only having the directory, because all I'm doing is transferring from one directory to another:
redirect 301 /folder_wrong/name.html /folder-right/name.html
That is fine right?