Tagged Questions

10
votes
4answers
908 views

What is the ideal length of an URL slug

To make pretty URL's from article titles I am using a simple function. However lately I an concerned about the ideal length of these "slugs". It is said that too many dashes are bad. However some ...
3
votes
3answers
176 views

How to handle existing indexed Mixed Case url's? [closed]

I have an asp.net web forms application that has been live for a number of years and as such has quite a lot of indexed content on google. Ideally, I'd prefer that all Url's for the website are in ...
3
votes
3answers
205 views

URL Generation Technique with PHP

I have a build a web portal based on the Cricket concept, I have build a Custom based CMS where I can upload the News for the site Once I upload the news, the URL Will be like this ...
3
votes
4answers
171 views

Best practices for converting an existing website into a website with SEF URL

I've got a website that was created about an year ago and its been constantly revised since then. The website is coded in classic ASP, contains about ~50 pages -- some are multi-purpose, and contains ...
3
votes
3answers
575 views

How can I display SEO friendly URLs using mod_rewrite?

I am not a PHP developer at heart and I have been asked to perform some SEO on an existing PHP website. The first thing I noticed was the ugly URLs so I want to get these to rewrite to something more ...
1
vote
1answer
584 views

URL rewriting with PHP MySQL .htaccess & GET

I have a MySQL database with 5000 items. The table is structured as id product-name content product-url You can access a specific product page by going to www.site.com/products/index.php?id=123. ...
1
vote
4answers
230 views

SEO URL Structure

Based on the following example URL structure: mysite.com/mypage.aspx?a=red&b=green&c=blue Pages in the application use ASP.net user controls and some of these controls build a query string. ...
0
votes
1answer
50 views

NGINX rewriting rulle for getting clean URL

I would like to know what would be the NGINX rewrite rule to redirect my wordpress permalink structure from : /%category%/%postname%/ to : /%postname%/
0
votes
1answer
82 views

ISAPI Rewrite RewriteRule for domain root username URLs

I am trying to create a root username using ISAPI Rewrite. E.g. www.mysite.com/myusername I want this to redirect to... /user.asp=myusername Then if the username is not found to load content ...
0
votes
1answer
56 views

iis 6 redirect or seo friendly url?

I have set up an SEO friendly url rewrite in IIS 6. It works on the url mysite.com/horoscopes/weekly/46/virgo Redirect rule: ^horoscopes/weekly\.aspx$ Rewrite Rule: ...
0
votes
1answer
30 views

Apache mod rewrite

I have 2 rules set in .htaccess RewriteRule ^([^/]*)/([^/]*)/([^/]*)\.html$ page.php?name=$1&do=$2&newstitle=$3 [L] RewriteRule ^([^/]*)/([^/]*)/([^/]*)\.html$ ...
0
votes
2answers
1k views

301 redirect query string to SEO friendly URL's through .htaccess

I’ve written some code on my .htaccess file which allows the use of SEO friendly URLs instead of ugly query string's. The following code rewrites the SEO friendly version in the browser to the query ...
0
votes
2answers
141 views

URL rewriting using .htaccess

I have my link like this /product.php?id=1 I want to rewrite that in .htaccess like /productname/id or /productname/1. Can you help me guys, I’m using PHP?
0
votes
3answers
1k views

Url Rewriting, SEO and encoding

I found this article regarding Url Rewriting most useful. But here are a couple of questions. I would love to use a url (before rewriting, With spaces between the querry string) ...
0
votes
1answer
41 views

mod_rewite advice

I was wondering if you could advise if there is a more efficient way of writing what I have below? Could this be acheived in the 1 rule? RewriteRule ...
0
votes
3answers
85 views

mod_rewrite and hyperlinks

I'm trying to get my head around mod_rewrite and friendly URLS. OK, on a very basic level I have the following rule: RewriteRule ^register$ register.php [L] This allows me to browse to ...
0
votes
2answers
256 views

Is ASP.Net 2.0/Ajax toolkit the right technology for implementing a SEO friendly website

As I understand it, just URL re-writing is not the only thing one needs to do for making a website SEO friendly. You also needs to maximize the use of div (instead of tables), reduce javascripts, ...