dynamic-url

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 there's a link pointing to the page from another site, or Google's Pagerank was calculated for that URL? I guess it's all lost right? (The l...

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: http://example.com/a/index.php?id=name ...where name is what is getting passed to index.php as the id argument. Anything I've tried results in either a 404 or a 500.. :(...

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 application. It's all a learning experience for both Python and Objective-C. (I've been a PHP programmer for quite some time). The goa...

.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: RewriteRule ^products/item/[^\d]([^/]+) /product/$1/ [R=301,L] RewriteRule ^products/item/[0-9]([^/]+) /product/$1/ [R=301,L] But this was...

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 it manually, it works fine. However, when i try and run my script through crontab, the output html file is very small and just says "Object ...

How to use custom control in asp.net

Hi I'm naive in ASP.NET , I use web.siteMap and siteMapPath control in my Web app , I can define static address in web.siteMap , But i have pages that use QueryString as a parameter and show different result , Like : ~/NewsDetails.aspx?NewsId=X So i followed and wrote my own custom DynamicSiteMapPath like the answer of [this address]...

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 is, what if I want to have a dynamic variable redirect to a different dynamic variable. For instance, I want: http://www.mydomain.com/pr...

RegEx for Dynamic URL Goals settings in Google Analytics

Hi, 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: /purchase.php?cDd=1&transaction_id=xxxxxxx&verify=xxxxxxxxxxxxxxxx=&method=creditcard&type=purchase transaction_id= is populated with a sept of numbers verify= is populated by a string of numbers, l...

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 supplied domain, and shopify allows a user to create their own e-commerce site - once again, they can supply their own domain to be used to acce...

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" displayed url http://www.server.com/folder/some-page-name if the page name is not set, as in: http://www.server.com/folder/ the def...

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 default the htacess RewriteBase /folder/ RewriteRule ^(.*)$ subfolder/index.php/?page=$1 [L] ...

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

Hello 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} is dynamically generated thorough the admin cms. The mapping of each uri to the servlet are done with help of Apache mod_rewrite, as...