2
votes
4answers
77 views
ASP.NET Friendly URLs
In my research, I found 2 ways to do them.
Both required modifications to the Application_BeginRequest procedure in the Global.Asax, where you would run your code to do the actual …
2
votes
4answers
61 views
URL convention for date range
What would be the accepted convention for displaying a date range in a friendly URL?
For example, in a time tracking application. Instead of using the database's primary key for a …
0
votes
1answer
25 views
Are these two re-writes the same?
How are the following different? Ignore the domain names.
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
RewriteCond %{HTTP …
2
votes
6answers
116 views
How many possible URLs can you make with the following characters?
I want to make a short URL service for 2 million assets but I want to use the shortest number of possible characters.
What is the math equation that I would need to use to figure …
0
votes
1answer
41 views
Mod_rewrite invisibly: works when target is a file, not when it’s a directory.
I have this rewrite rule that turns foo.com/test (or foo.com/test/) into foo.com/test.txt:
RewriteRule ^test/?$ test.txt [NC,L]
It works perfectly and, importantly, never reveal …
0
votes
2answers
75 views
How Can I rewrite SEO friendly URL on STRUTS?
Hi
We have a website which is coded Java with Struts Framework. The WebSite's Urls are not seo friendly. All of them are like below
../buyerApplication.do&companyId=2323
…
2
votes
7answers
46 views
how to structure a list filtering clean url for usability and seo?
I am a big proponent of using super clean urls for all pages and lists. Generally my pagination urls are just example.com/section/page/2 and tags are example.com/tags/tagname. I ge …
0
votes
2answers
24 views
How to design URI for a resource that occupies different positions in a hierarchy?
What's the best way to represent a list resource when the list can be "owned" by different resources?
Take your typical blog example.
Say you've got Posts, Comments and Users. A …
3
votes
8answers
224 views
Is it worth using “pretty URLs” if you don’t care about SEO/SEM
I'm designing a hosted software-as-a-service application that's like a highly specialized version of 37Signal's Highrise product. In that context, where SEO is a non-issue, is it …
0
votes
1answer
50 views
html post form action not specifically spell out php file?
I have a post html form, and the action is index.php, which is the websites main page. I never actually have index.php in the address bar, since links to "/" go to it, and even if …
2
votes
2answers
57 views
Google analytics page name
Hey guys, Is it possible to use another name for the page that is currently being tracked instead of the url.
The reason I ask is that I have not implemented friendly url slugs i …
0
votes
4answers
51 views
Make registered users have its own url
Hello.
I want to build a web application where users can register and have a profile.
People can visit the profiles adding the user name in the url like this.
http://mysite.com/j …
2
votes
6answers
186 views
Is .html extension better than .php and .aspx for SEO ?
Is .html extension better than .php and .aspx for SEO ?
0
votes
4answers
88 views
PHP includes and POST
I'm developing a website and in my attempt to make friendly URLs without recurring to mod_rewrite (because chances are my client's server doesent allow it), I came up with this sys …
0
votes
3answers
39 views
Why are two ActionResult methods being invoked for my page?
I have an asp.net-mvc app with the following aspx pages served by my 'Users' controller: Index.aspx, User.aspx, UsersIntoActivity.aspx and UsersUsingLocation.aspx.
In my Global.as …
