I have a domain.org website which uses Wordress and it was located in domain.org/owp/
, I moved the content to domain.org/
and everything works fine but there are old posts with urls that has /owp/
with them they are on fb so how can I redirect those to the correct new URL?
This is the site .htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
thank you