Posts

Showing posts from September, 2014

List of websites that can be useful for anyone

The 101 Most Useful Websites These sites solve at least one problem really well and they all have simple web addresses 1. screenr.com – record movies of your desktop and send them straight to YouTube. 2. ctrlq.org/screenshots – for capturing screenshots of web pages on mobile and desktops. 3. goo.gl – shorten long URLs and convert URLs into QR codes. 4. unfurlr.com – find the original URL that's hiding behind a short URL. 5. qClock – find the local time of a city using a Google Map. 6. copypastecharacter.com – copy special characters that aren't on your keyboard. 7. postpost.com – a better search engine for twitter. 8. lovelycharts.com – create flowcharts, network diagrams, sitemaps, etc. 9. iconfinder.com – the best place to find icons of all sizes. 10. office.com – download templates, clipart and images for your Office documents. 11. followupthen.com – the easiest way to setup email reminders. 12. jotti.org – scan any suspicious file or email attachment f

Redirect non WWW to WWW and 404 redirect

Redirect non WWW to WWW RewriteEngine On RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] Place this code in .htaccess file. 404 Redirect Code: ErrorDocument 404 /index.html or you can replace index.html with your 404 page.

Redirect index.html to root

Here is the code: RewriteEngine On RewriteRule ^index\.html$ / [R=301,L] RewriteRule ^(.*)/index\.html$ /$1/ [R=301,L] Put this code in .htaccess file