phileplanet
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Redirection/Modifying htaccessOkay I haven’t found an htaccess solution to this so what I am going to do is include a PHP script in the 404 template.
The script basically sees takes the URL of the 404, and if it matches a location in my redirects, it goes to the new location.
I hope to make this a plugin with a user interface so that others can benefit from it.
Thanks for your help.
Forum: Fixing WordPress
In reply to: Redirection/Modifying htaccessSorry Viper007Bond but I wanted it to redirect links.php to /links/, not rewrite.
I meant that I was using mod_rewrite to redirect since most plugins didn’t really work well for me.
Forum: Fixing WordPress
In reply to: Redirection/Modifying htaccessSorry but it’s still having no effect.
Here’s the new .htaccess:
RewriteEngine on
RewriteRule ^links.php$ /links/ [R=301]# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /area51blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /area51blog/index.php [L]
</IfModule># END WordPress
Forum: Fixing WordPress
In reply to: Redirection/Modifying htaccessOkay that doesn’t mess up WP, which is good, but my redirects don’t seem to do anything.
Here is the htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /area51blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /area51blog/index.php [L]
</IfModule># END WordPress
RewriteRule ^sites.php$ /links/ [R=301]
Is there something wrong?