atul
atul

Reputation: 134

Redirect old wordpress site pages to new php site urls using .htaccess

  1. I had a website 'example.com', which was in wordpress initially but i had to move it to php.
  2. Now my site is in php. The problem now is, i tried redirecting urls, for ex:-http://www.example.com/about-mysite/, to my new url using Redirect 301 in .htaccess file.

  3. Suppose my old page is /about-example/, i redirect it as,

    Redirect 301 /about-mysite/ http://www.example.com/about-example.php
    

but it is not getting redirected.

Upvotes: 1

Views: 474

Answers (1)

anubhava
anubhava

Reputation: 785156

Have this redirect rule right at top of your .htaccess before WP rules:

Options -MultiViews
RewriteEngine On

RewriteRule ^(about-kankaria-eye-hospital)/?$ /$1.php [L,NC,R=301]

Suggested generic redirect rule:

RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^([^.]+)/?$ /$1.php [L,NC,R=301]

Upvotes: 1

Related Questions