I have a URL that needs to redirect to another within the same site, is there a simple way to do this?
i have this setup for permalinks:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
is there a way to build off of it or something simpler?
thanks for any help!
kmaier