wordpress permalinks not working – htaccess seems ok but getting 404 error on pages

For other people landing on this page – Another issue could be (If you are using Apache as your web server) is your httpd.conf or your sites-available/sitename.conf file needs editing. Your web directory will need to allow the .htaccess file to override it’s settings. look for your web dir in the file – it will … Read more

Is there a permalink to the latest version of gist files?

Raw gist URLs follow the pattern below: https://gist.githubusercontent.com/[gist username]/[gist ID]/raw/[gist commit ID]/[file name] To view the latest version, simply remove the [gist commit ID] part: https://gist.githubusercontent.com/[gist username]/[gist ID]/raw/[file name] e.g. https://gist.githubusercontent.com/mwek/9962f97f3bde157fd5dbd2b5dd0ec3ca/raw/user.js Keep in mind that the endpoint is cached, so your updates may be visible with a slight delay.

Remove category and tag base from WordPress URLs without a plugin?

If you want to remove /category/ from the url, follow these two steps: Go to Settings >> Permalinks and select Custom and enter: /%category%/%postname%/ Next set your Category Base to . Save it and you’ll see your URL changed to this format: http://yourblog.com/quotes/ (Source: http://premium.wpmudev.org/blog/daily-tip-quick-trick-to-remove-category-from-wordpress-url/)