keep old URL after moving to WordPress
-
Hello everybody,
I have a static page under following URL:
somedomain.com/staticpage.html
now i want it to map to WordPress page but without 301 redirect – so that the above address remains the same in browser URL field.
I want to accomplish this using .htaccess file (not internal WP rewriting) – I have tried following:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wp262/
RewriteRule ^staticpage\.html?$ /wp262/about/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wp262/index.php [L]
</IfModule># END WordPress
but it doesn`t work ??
Any ideas?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘keep old URL after moving to WordPress’ is closed to new replies.