My website is one year old baby, just now I changed my deep links from html pages to php pages. Is this right or wrong for SEO? Thanks in advance!
lol does anyone even know what he's TRYING to say. Long story short: try and find out whether or not people have linked to deep pages of your site - and redirect those accordingly. Preferrably you'll permanently redirect all pages, obviously, depending on how many pages your site holds. For Wordpress sites, there are plugins who can create your htaccess for you if you add the new permalink structure.
Man, what u doing ? first redirect all your pages using 301 redirect. if your site is hosted on apache server then redirect your site with the help of .htaccess file and if your site is hosted on iis server then redirect your site with the help of mode rewrite. if you dont do this then you will loss your rankings and traffic. guess some is landing on your old page through organic search then your page is moved.. and you lost visitor.. so rush up..
very simple. Open .htaccess file and just place below code RewriteEngine On Redirect 301 /example.html http://yoursite.com/examplekeyword.php If you are having some 100 pages site then you must do this for every page. If you do 301 redirect you will not loose traffic,PR and backlinks
If you changed from .html to .php than take following steps to switch without losing ranking of those pages There are two ways to do this: - Tell Apache to parse all .php files a .html file. to do this, place this code in your httpd.conf file: Code: AddType application/x-httpd-php .php .html - Use a 301 redirect to redirect from the .php files to the .html files. Code: RedirectMatch 301 ^/(.*)\.html$ http://www.yourdomain.com/$1.php