Simple way to create wordpress link SEO friendly.
Purpose of this tutorial is to show a simple step to change wordpress links search engine (Google, Yahoo, MNS) friendly. There are many tutorials and wordpress help about this. But I tried to show it simple and to the point. So that you can do yourself without much knowledge and difficulti.
- First of all go to wordpress admin and click Settings left sidebar
- Now click Permalinks
- You will see a section Common settings, In this section you can see default radio button selected.
- Now you have to change this setting to Custom Structure so select radio button ‘Custom Structure’
- Paste this ‘/%category%/%postname%/’ in text field in front of Custom Structure radio button.
- Save all changes
- Create a .htaccess file
- Write the following code in it
- Save this file in your wordpress main directory
RewriteEngine On
RewriteBase /wp/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wp/index.php [L]