I would like to add aliases to an existing .htaccess taht was generated with WordPress. So essentially I want to keep the current URLs as they are, but overwrite some of them with a different value that will make the URL act as an alias.
So if I go to http //mysite.com/test-post/ I want it to go to the home page, but still have "test-post/" as the URL. If possible I want to have a per URL basis of adding this to the .htaccess.
The existing .htaccess is as follows:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Thanks in advance for your help :)