Omg you’re a tamilian??
I am

#batman#dc comics#dc#bruce wayne#dick grayson#batfam#tim drake#batfamily#dc fanart



seen from United States
seen from United States

seen from Brazil
seen from Brazil

seen from Brazil
seen from Brazil
seen from Brazil

seen from United States

seen from Brazil
seen from United States
seen from China
seen from Türkiye

seen from Argentina
seen from United States
seen from United States

seen from Italy
seen from Moldova
seen from United States
seen from United States
seen from France
Omg you’re a tamilian??
I am
How to enable pretty SEO friendly URL for Opencart
How to enable pretty SEO friendly URL for Opencart
IF you have ever installed opencart or familiar with the CMS, you will also notice and get familiar with it not so good URL slug attached to any link like the product and category slug at the back of your domain. They not good and friendly to human reading likewise SEO might find it hard indexing pages on your site using such odd ugly slug.
For example, you get something like the below before…
View On WordPress
Pretty Urls
There has been a lot written about structuring urls. Just google around and you'll find a truckload of examples about best practices to structure urls. In this post, i'll share some of my learnings with examples. I'll be using my pet side project:
https://packageindex.com
Urls tell a story e.g. here's the url for the redis app called redis-commander:
/techstacks/categories/kvstores/redis/apps/redis-commander
The story that can be formed from the above is: Within the technology stacks categories, we are talking about the redis-commander application of the redis key-value store.
2. The urls should degrade gracefully. By this I mean that you should be able to truncate elements off the url path and the url should still work. i.e. it should still tell a story. e.g.
/techstacks/categories/kvstores/redis/apps
The story that can be formed from the above is: Within the technology stacks categories, here are all the applications we have surrounding the redis key-value store.
/techstacks/categories/kvstores/redis
The story that can be formed from the above is: Within the technology stacks categories, here are the details of the redis key-value store.
3. In cases where you have no content to show for a particular truncated url, redirect to another url with content. e.g.
/techstacks
The above url really has no content as it is just for namespacing. Hence I redirect to the home page.
4. Use plurals within the url. This is more of a stylistic convention. e.g. I use the work 'categories' rather than 'category'.
5. Always return the correct HTTP return code. So 200 for GET, 201 for POST etc
6. Always honor the HEAD request on your homepage. It helps in many caching type scenarios. e.g. try:
curl -I -X HEAD https://www.packageindex.com
You can also follow this post on Reddit at:
http://www.reddit.com/r/programming/comments/244l9u/pretty_urls/
rewrite.script file for WordPress on Zeus web server
Put rewrite.script file with the content below into root directory in order to use pretty URLs and to get rid of index.php bit:
#Zeus webserver version of basic WordPress mod_rewrite rules map path into SCRATCH:path from %{URL} look for file at %{SCRATCH:path} if exists then goto END look for dir at %{SCRATCH:path} if exists then goto END ##### FIX FOR LOGIN/FORGOTTEN PASSWORD/ADMIN ETC ##### match URL into $ with ^/wp-.*$ if matched then goto END ##### FIX TO ALLOW SEARCH TO WORK ##### match URL into $ with ^/(.*) set URL = /index.php/$1
Can I get a blog rate in here?
url: 10/10
icon: 10/10
theme: 8/10
posts: 9/10
overall: 9/10
following: no | yes |now | 4ever
guacamole or salsa?
whatisthisquestionicannot
omfg i dunno why but i kept on laughing but really i think i’ll go with salsa.
ICON: good | great | perfect | amazing | flawless | ASDCKJHBSFDS | (i don’t know who that is…? but it’s visible and cute :>)
URL: good | great | perfect | amazing | flawless | ASDCKJHBSFDS |
THEME: good | great | perfect | amazing | flawless | ASDCKJHBSFDS |
SIDEBAR: good | great | perfect | amazing | flawless | ASDCKJHBSFDS |
POSTS: good | great | perfect | amazing | flawless | ASDCKJHBSFDS |
OVERALL: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 10+ | OMFG
FOLLOW: no , sorry :< | I am now :) | yes | FOREVER
RailsCasts Episode #314 Pretty URLs with FriendlyId
A new RailsCasts episode has been published: http://rh.gd/zzq9JF
Google Plus: Pretty URL on your own domain!
Google redirects http://google.com/+ to http://plus.google.com and it's very simple to do this on your own domain too!
For Apache (with .htaccess): Insert this line in your .htaccess file in the root of the domain (if you don't see this file, just create one!)
Redirect /+ https://plus.google.com/108884222134944773728/post
# /+ is your base URL (yourdomain.com/+) you can use plus or anything to fit your need.
# https://plus.google.com/108884222134944773728/post is the URL it will redirect to, paste your long Google+ URL here or use gplus.to's URL.
For Nginx: There is no .htaccess file on Nginx server, if you want to redirect to your own Google+ Profile URL, you have to have access to nginx domain config file. (In Ubuntu, it's located at /etc/nginx/sites-enabled). In this file, find location / {} and paste this line between { and }.
rewrite ^/+ https://plus.google.com/100995349638807368851/posts;
Restart Nginx and have fun with new Google+ URL on your own domain :)
via giang's blog