Questions tagged [clean-url]

For questions about achieving clean-url's. Clean URL's are url's that only include easily understood words and numbers, and not meaningless variables that only a programmer would understand.

Clean URLs, RESTful URLs, user-friendly URLs or SEO-friendly URLs are purely structural URLs that do not contain a query string [e.g., action=delete&id=91] and instead contain only the path of the resource (after the scheme [e.g., http] and the authority [e.g., example.org]). This is often done for aesthetic, usability, or search engine optimization (SEO) purposes.

http://en.wikipedia.org/wiki/Clean_URL

20 questions
0
votes
0 answers

mod_rewrite clean urls with alphabets

I was using mod rewrite to create clean urls. I have urls like this : http://www.sitename.com/viewcategory.php?id=262 I have rewritten successfully my url like this : http://www.sitename.com/262 With the following mod_rewrite rule RewriteEngine…
codegeek
  • 181
  • 1
  • 2
  • 9
0
votes
1 answer

Normal link redirects to friendly URL

Is it possible in any way to treat link1 as prodcuct/mobile/android/xy in address bar. I mean when click on the 'link1' will show the SEO friendly url in address bar. Thanks in advance
user1187405
  • 463
  • 2
  • 6
  • 17
0
votes
1 answer

How to merge several HTAccess rewrites?

I have the following .htaccess file for my website: Options +FollowSymlinks RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ /$1.php [R=301,L,QSA] This works, in that the url…
Forest
  • 938
  • 1
  • 11
  • 30
0
votes
1 answer

URL Routing method for core php

I have web site in core php and I want to make my SEF URL. In my web site for transferring control from one page to other i have used something like header("Location: edit.php?id=12"); I read one article but couldn't get it how to implement…
Satish
  • 1,012
  • 2
  • 15
  • 32
-1
votes
1 answer

How to make clean url using .htaccess

I want to create a clean url for my blog.php page I dont want to show the blog.php in address bar I want this type of url http://www.webiste.com/title/how-to-make-dynamic-menu But my existing url is like…
1
2