Reputation: 134
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.
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
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