Configure Custom Wordpress Permalink
Tech-Today

Configure Custom Wordpress Permalink


The following guidelines will help us debug a custom wordpress permalink. Normally we want the URL to be customized, has sense for SEO purposes but wordpress by default use the jurassic id system (page_id=xxx). Fortunately wordpress already offer this feature, but is always tricky to setup specially on different configuration. So what to check (applicable on both Windows and Ubuntu)? 1.) Make sure that rewrite module is enabled, in apache's http.conf make sure that the below line is uncommented. LoadModule rewrite_module modules/mod_rewrite.so 2.) In the apache's http.conf directory setting change AllowOverride value from None to All, there are 2 instances make sure you change the 2nd instance. AllowOverride All 3.) Normally wordpress will create a .htaccess in your wordpress installation's root folder when you choose custom permalink. In case you already have one and it's read-ony, here's how it look like:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
4.) Make sure that you don't have this setting in your apache's http.conf AccessFileName htaccess.txt 5.) If everything fails, you can always set custom permalink to this one :-) /index.php/%postname%/




- How To Handle An Xmlrcp Wordpress Attack On Nginx Server
I'm not really a system administrator and these steps are just based on my personal experience in securing our own wordpress websites. Lately there has been a lot of attacks on wordpress sites (since it's a popular framework) specially on windows...

- How To Migrate Your Godaddy Web Hosting To Digitalocean
Lately I've been reading some good articles about DigitalOcean as a cheap VPS option in online hosting and so I decided to try and subscribe to one. Since my wordpress website hosting is already expiring I decided to moved the hosting to DigitalOcean...

- Setup Wordpress In A Sub-domain In Godaddy's Windows Hosting
This configuration is for windows only. Configuration: For example you have domain anime.com that is powered by wordpress, you set up permalinks to use postname so post will be accessible at http://anime.com/postname. The problem is when you create a...

- Web Development
WordpressConfigure Custom Wordpress PermalinkZencartHow to add a customize product admin fields in zencart by editing/adding extra codesJoomlaHow to install/setup/configure joomla to run in a xampp setup. This avoids the technical detail of manually installing...

- How To Install And Setup Magento On A Windows 7 Machine
This tutorial will try to install and setup magento on a local pc running windows 7.  Requirements (I'm using the following versions, you can search the download links using google - lame :-) ): 1.) apache2.2 2.) php-5.2.14 3.) MySQL Server 5.5...



Tech-Today








.