Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
2k views

Dynamic URL's inside Google's AppEngine

Good Afternoon, I'm currently trying to build something incredibly simple inside of the Google AppEngine. The goal is to build a simple photo sharing application that will connect back to my iPhone ...
2
votes
7answers
565 views

SEO and hard links with dynamic URLs

With ASP.NET MVC (or using HttpHandlers) you can dynamically generate URLs, like the one in this question, which includes the title. What happens if the title changes (for example, editing it) and ...
1
vote
2answers
186 views

Images not returning with 304 response code due to rewrite module

In our ASP.NET web application, we use our own class to act as a rewrite module. It takes all requests to the server, acting as a bootstrapper. To access an image on our web application, the browser ...
1
vote
3answers
133 views

PHP: htacess default variable

I want to set a default variable for a query that comes at the end of a url The .htaccess file redirects the url as follows: http://www.server.com/folder/subfolder/index.php?page="some-page-name" ...
1
vote
2answers
199 views

Whats the technology behind sites like (Google Sites, Shoppify etc)?

I am wondering how sites like Google sites and shopify allow customers to create a website and then link it to their own domain?. Google sites allow a user to create their own website, at a user ...
1
vote
1answer
272 views

RegEx for Dynamic URL Goals settings in Google Analytics

I have tried to work this regex to set up a goal in GA for 2 days, but I cannot get my head around it... The url format is like this: ...
1
vote
4answers
314 views

Help with mod_rewrite rule for dynamic url

Ugh.. mod_rewrite makes me feel stupid. I just haven't wrapped my brain around it yet. :/ I have this url: http://example.com/a/name/ ...that I want to point here: ...
0
votes
1answer
30 views

Plain URLs from dynamic PHP page

I am creating a question and answer site using PHP. Questions are viewed on one page using 'question.php?qid=1234', is the the correct thing to do, if so how to I make pages have URLs that search ...
0
votes
2answers
157 views

Change a uri with javascript and not reload the page

I am trying to figure out how to change the URI with javascript and not reload the page. The action would be similar to navigating a folder structure on github where when you click a folder it takes ...
0
votes
1answer
55 views

Dynamic URLs using .htaccess file

I'd like to convert a URL like http://mysite.com/search/search_mgmt.php?CategoryID=1 to something like http://mysite.com/search/my-seo-friendly-url I have mod_rewrite enabled.
0
votes
1answer
295 views

How to get Dynamic URL through HTACCESS file in PHP?

I need to use dynamic sub domain in the url. My PHP application will open account for users. My URL for login screen will be http://example.dev/app/login After logging in, user will go to the ...
0
votes
1answer
197 views

2 url rewrite rule for 1 dynamic page

I have a dynamic page called show.php. The page is dynamic and the url may be either show.php?name=john-doe or show.php?category=student. I'm trying to create a rewrite rule that turns the url into ...
0
votes
1answer
126 views

When to use static urls and when dynamic urls

I want my web-site to be SEO-ed and for which I will be using static URLs (RESTful web services). But in some scenarios, I cant choose which of them(static url/dynamic url) is better. For instance in ...
0
votes
1answer
258 views

Single action class for multiple dynamic URIs throws excption when concurrent requesting

I've developed a web site using Struts2 as a controller and integrated it with Spring and Hibernate to do the business logic and DB stuff. The website's URIs are http://my.domian.com/URI; which {URI} ...
0
votes
2answers
251 views

simple redirect to default page with htaccess

The htaccess file requires an entry at the end of /folder/ to redirect the page example: http://www.server.com/folder/"some-page-name" If no page is defined as, then I want it to be "index" by ...
0
votes
2answers
109 views

Rewrite a dynamic URL to a new dynamic URL

I am new to the RewriteEngine and have not been able to find an answer to the following issue. I run an ecommerce site with an ever changing catalog of product skus. Our URLs are dynamic. The question ...
0
votes
2answers
745 views

curl: downloading from dynamic url

I'm trying to download an html file with curl in bash. Like this site: http://www.registrar.ucla.edu/schedule/detselect.aspx?termsel=10S&subareasel=PHYSICS&idxcrs=0001B+++ When I download ...
0
votes
2answers
166 views

.htaccess redirecting dynamic URL

I am using the following code to attempt to redirect a dynamic URL to a new dynamic URL, under the same domain: RewriteRule ^products/item/^\d([^/]+) /product/$1/ [R=301,L] I've tried these too: ...