Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter phileplanet

    (@phileplanet)

    Okay 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.

    Thread Starter phileplanet

    (@phileplanet)

    Sorry 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.

    Thread Starter phileplanet

    (@phileplanet)

    Sorry 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

    Thread Starter phileplanet

    (@phileplanet)

    Okay 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?

Viewing 4 replies - 1 through 4 (of 4 total)