I've read a lot of similar questions but none of them seem to work for me or be applicable.
I have a Wordpress site that I'm currently running on localhost for development.
This is the contents of it:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
/* The lines added by me */
RewriteEngine On
Redirect 301 /wordpress/about/ /wordpress/about/history/
</IfModule>
# END WordPress
php_value upload_max_filesize 64M
php_value post_max_size 64M
php_value max_execution_time 300
php_value max_input_time 300
The two lines were added by me to redirect my empty About page to its sub-page History, as recommended here.
However, when I then reload the server and go to localhost/wordpress/about/
in Firefox, I get the following screen:
Note the tons of extra "history" links appended to the URL. What could be causing this?