1
vote
0answers
32 views

How to configure url maping in tuckey-urlrewrite-filter?

I have some page about.jsp, contact.jsp, user.jsp, index.jsp in a folder projects under webapps root. I use tuckey-urlrewrite-filter for url mapping. I used url writing as <rule> ...
-1
votes
0answers
26 views

How to write web.xml for url rewriting of jsp page?

I have some file like index.jsp, user.jsp, about.jsp, contact.jsp in a folder named "project" inside webapps. I want some url rewriting like... If i write in url ...
2
votes
2answers
25 views

Mvc: Same ActionResult with different name depending url

I would like to know what's the best way to achieve this. I have an ActionResult in my controller, actually it has news name, now I need to internationlize my website and I can't have the same news ...
1
vote
0answers
41 views

IIS 7.5 URL rewrite module and URL routing in Global.asax for sub-applications

I have a "top-level" web-site, www.ccesd.ac.uk, and various "lower-level" web-sites running off it such as www.ccesd.ac.uk/BritSocAt that are separate sites but share a lot of code. These lower-level ...
0
votes
0answers
25 views

appending folder structure in url rewriting

In our custom cms we have facility to add restaurant and special offers. Initially what I did is to rewrite friendly urls using the name field. To achieve this I write this code in the ...
0
votes
0answers
52 views

Url rewriting with multiple optional values in asp.net

I have an Asp.net MVC 4 application with a url schema of the form host/catalogue/n/navigation_value/t/type_value/b/brand_value. n, t and b indicate what domain the following value refers to: ...
0
votes
1answer
22 views

How does custom user URLs work?

Today, I'm asking a question out of curiosity. The new sites, I'm talking about.. Tumblr, Pinterest and many more are giving their users custom URLs to their sites, for example, mine on Tumblr would ...
0
votes
1answer
40 views

CakePHP: Can I Promote active router with Router::promote or some other way?

I've got two or more routes that will be going to the same controller and action. This is fine until I want to use a helper such as the form helper or pagination on the page. What happens is that the ...
0
votes
0answers
26 views

ToroPHP - basePath & trailing slash

I am just testing out the ToroPHP routing system, and I like the simplicity of the service, but wondering about couple of things, and hopefully someone can help me out. This is my CODE: ...
0
votes
0answers
366 views

Nginx Rewrite route to index.php Except /phpmyadmin AND url shortening / handling / splitting

Hi first question on stackoverflow :) Im routing everything to index.php so i can handle url shortening and internal routing there tryed nginx rewrite all to index.php except whitelist no succes my ...
0
votes
4answers
210 views

How to set dynamic route to use slug in CodeIgniter?

Let's say that I have a controller named pages and there is a method slug_on_the_fly public function slug_on_the_fly($slug) How would my route for this look like? E.g. for blog controller it ...
0
votes
1answer
115 views

.htaccess rewriting PATH_INFO vars to empty before passing to template; not removing index.php from url

Morning everyone, I'm hoping this will be an easy one! (I haven't even had coffee yet why am I up so early?!) Anyway.. got a two-parter for you: First (basic) issue that I'm trying to remove ...
0
votes
1answer
221 views

htaccess rewrite rule for admin panel

I have the url pattern in my web application like this "www.mysitename.com/foldername/controller/method". And all requested pages are redirected to index.php first on root folder and then it process ...
0
votes
0answers
143 views

Spring mvc controller escaping 'slashes' in @PathVariable

I want to rewrite the url processed by my spring mvc controllers, specifically: localhost:8080/app/var1/path/to/resource/var2 to localhost:8080/app/var1/path-to-resource/var2 By this way ...
0
votes
1answer
116 views

Change htaccess Joomla to work with CI in subfolder

Curently i've got main site running joomla 1.5 and additional app made on Codeignter in a subfolder. When i open app index dir url - www.mysite.com/app - it's ok, but if i try to use app deeper, like ...
0
votes
0answers
86 views

MapPageRoute in Hebrew

I have a project written in asp.net all the pages have names in Hebrew and are listed under a folder named: "StaticContent". What I wish to do, is simply remove the /staticContent/ and the ".aspx" ...
0
votes
2answers
89 views

Rewrite Url (URL Routing) in .htaccess

My directories are like: http://www.mydomain.com/macbook-computer http://www.mydomain.com/sony-computer http://www.mydomain.com/lenovo-computer I want to make that, if a user type ...
0
votes
1answer
416 views

MVC3 URL Encoding Issue with Slash (/) %2f - Passing a slash in query string with MVC Routing

I have the following routing path defined in global.asax to handle two parameters in the url: routes.MapRoute( "Default", // Route name "{page}/{th}", // URL with ...
0
votes
1answer
198 views

Remove menu item name/alias from url in joomla

I have a menu and when i click a menu item i am redirected to the items content. So i am in the domain.com/menuitem page. In the current page i have some categories and when i click on a category i ...
0
votes
1answer
42 views

Simple 301 ReDirect

I currently use this to forward my URLS. But I had an error and I need to forward all /search/search-term/1/ >> /search/search-term/ /search/search-term/2/ >> /search/search-term/2/ ...
1
vote
2answers
94 views

Maintain URL when going from ASP.NET WebForms to ASP.NET MVC

I am converting an old ASP.NET WebForms app to ASP.NET MVC 4. Everything is fine, except that I have a need to maintain backward compatibility with a specific URL. I found this great post on using ...
6
votes
2answers
310 views

Encoding an url correctly while using a rewrite engine

I am using a mod_rewrite and a routing system extracted from Akelos Framework. I have a very big problem while using some symbols in a search key parameter. A routing map is following: ...
1
vote
1answer
202 views

ASP.net WebForms Extensionless URLs

I understand that in ASP.net 4.0 URL Routing has been incorporated into Web Forms. It is great that I can do something like this: void Application_Start(object sender, EventArgs e) { ...
0
votes
1answer
129 views

codeigniter htaccess rewrites the url to the BASEPATH../

i have a website that i made with codeigniter it works relativly fine on the local machine but when i uploaded it to the server it gives me a 500 error, and the error is gone when i remove the ...
0
votes
0answers
38 views

Load file if exist, if not check remote server

I'm trying to use mod_rewrite to make it easier working in my development environment. I am running a copy of the dev website locally but to save disk space I don't download all uploaded files. What ...
0
votes
1answer
49 views

How to redirect of all url to 1 url only using .httaccess

Can any one help me to redirect of all url to 1 url only using .httaccess For example, all the following URLs... "http//josephm.webatu.com/index.php" "http//josephm.webatu.com/login.php" ...
0
votes
0answers
131 views

Unable to enable URL-rewriting for my website

I am using urlrewriter.net's library to enable URL rewriting in my website. Following is the code I am using in my web.config: <configuration> <configSections> <section ...
1
vote
1answer
103 views

How to change my URL structure on old php site using database values?

I've been tasked with making the URLs for an old website "pretty" It's a real estate website with a few dozen buildings and maybe 100ish total apartment listings. Current urls are like: (i was able ...
0
votes
1answer
83 views

Module Url Working On Localhost But Not Working On Server

i have generated a module admin by gii and add module based authentication.application is running on virtual host as www.localhost.com and it module is working fine in localhost by url ...
0
votes
2answers
56 views

Level of obscurity of destination URLs via mod_rewrite

To achieve a single layer of content delivery security, I'm looking into the possibility of obscuring a resource URL via an .htaccess RewriteRule: RewriteEngine on RewriteBase /js/ RewriteRule ...
1
vote
1answer
202 views

Zend Framework URL Rewrite For SEO

I'm new to Zend, so pls help me out on this one, since I have searched a lot and tried a lot, I really did. here is the very old question: this is my current url: ...
0
votes
0answers
29 views

URL redirection along with the path appended

I have a website something like this: www.main-website.com/universe/ Now I am planning to purchase a new domain something like this: www.universe.com And redirect it to ...
0
votes
1answer
227 views

Nice seo URLs in CakePhp

I'm developing website on CakePhp, and I have next problem with URLs. In my app for categories and subcategories pages I need have next URLs: /category-slug/ /category-slug/subcategory-slug and ...
0
votes
0answers
99 views

ASP.NET URL rewriting like Wikipedia

I have searched the Internet, and it looked like there are three options The old, hard way : create some URL handler extension for IIS (I am not sure if the terminologies are correct). .NET 3.5 way: ...
1
vote
0answers
248 views

Asp.Net PageMethod can not be accessible when UrlRewrite is active

I have an application and it works like a charm if i don't apply rewrite rule. When i apply a rule (even it gives the same address) pagemethod can not be accessible. I call pagemethod inside the js ...
4
votes
1answer
112 views

How do I map the URL example.com/root/login to just example.com/login? [duplicate]

Possible Duplicate: How to map Home/Action/id to just action/id? I have a Views folder called "root" Inside it is a view called "login.aspx". I have a Controller called ...
0
votes
0answers
58 views

images requests go to the wrong folder need to reroute

Hello I know there are similar questions to this one but i have a little bit different of a spin on the information I need. What I have is an xml file that cannot be edited because of certains rights ...
0
votes
1answer
20 views

htaccess codes behaves differently when written in single line and when written in two different lines

I was trying to learn the htaccess basics but initial step made me go crazy and lost some precious time.. htaccess codes behaves differently when written in single line and when written in two ...
0
votes
1answer
407 views

Yii Setting a custom URL format

What i am trying to do is to create a custom rule in Yii for URL management. The general URL rules are set in main.php 'urlManager'=>array( 'urlFormat'=>'path', ...
0
votes
3answers
107 views

Custom Query Parameters without Appending Them to URL

I have 'urlFormat'=>'path' and 'showScriptName'=>false in the urlManager. I have proxies/read as controller/action and article=>some_name as parameters. Whenever I create a link such as: ...
3
votes
2answers
206 views

Access to new php files

I was helping a friend with a website and I created few php pages that he then copied to the root. The problem is that the htaccess file is setup in a way that I'm not able to access any of the new ...
1
vote
1answer
121 views

should url for ajax get http request be url friendly for seo?

The case: Controller that get only get "GET HTTP" calls(WEBSERVICE) from website view or from android, iphone etc.. should have url friendly url for seo? ( user friendly url: ...
1
vote
0answers
238 views

URL Rewrite in C# .NET 4.0

Following is my code on globle.asax.cs file: public static void RegisterRoutes(RouteCollection routeCollection) { routeCollection.MapPageRoute("Account", "home", ...
0
votes
1answer
78 views

Mod_rewrite not working after moving site to a subfolder

I just moved an old site to a subfolder along with it's mod_rewrite rules, but they don't work anymore. One rule, for example is: # Input: noticias/ # Output: noticias.php RewriteRule ...
0
votes
3answers
144 views

Redirect all URL except one query string

I have 2 domain mcleancenter.org and aldentheatre.org,Both pointing to one directory. I want to redirect all URLs which don't have "alden-theatre" to mcleancenter.org. And all URLs which have ...
4
votes
1answer
425 views

php htaccess redirect to bootstrap file prevents 404 errors with css files etc

I have been working on making own framework and focusing on learning more advanced programming practices, than I learned at college. I use .htaccess to redirect all page request to my bootstrap file ...
2
votes
1answer
138 views

pass url data to new site on 301 permanent redirect

I have enabled the 301 redirect on IIS 6 for my old site,the option for passing the query string is enabled in the IIS as mentioned in this article. ...
0
votes
1answer
49 views

issue while making a 301 redirect to the site home page from custom route in an asp.net mvc application

I have implemented the 301 permanent redirect as read in this article, Everything is working except in one case the redirect happens to www.sitename.com/www.sitename.com. It seems like the place ...
0
votes
1answer
251 views

What is the difference between URL Router and Dispatcher?

I want to know the difference between the URL Router and Dispatcher, because searching on the internet has some interesting things, just do not know if it's because they are similar, or because they ...
0
votes
1answer
192 views

iis6 url redirecting

i always use iis 7 in my projects till now. and my url rewriting system was redirecting 404 errors to a pagenotfound.aspx page in iis7 then find the url mathces with the coming one and redirect it ...

1 2 3 4