A URL rewrite engine is software that modifies a web URL's appearance (URL rewriting). Rewritten URLs (sometimes known as short, fancy URLs, or search engine friendly - SEF) are used to provide shorter and more relevant-looking links to web pages. The technique adds a degree of separation between ...

learn more… | top users | synonyms (3)

0
votes
0answers
4 views

Postback after button click in asp.net causes URL to change

I have an asp.net website that uses URL rewrite rules for provides meaningful URLs. The URL: www.mywebsite.com/reports/{name} is rewritten to: www.mywebsite.com/reports/index.aspx?Title={name} Now, ...
0
votes
1answer
25 views

managing web pages and URL

i have a site tree like this controller (folder) file1.phpfile2.php.....file10.php view (folder) home.phpprofile.phpmessage.phplogin.phpregister.php..... index.php css.css js.js At ...
0
votes
0answers
5 views

URL rewrite stopped working with https URL

I am developing a PHP based website. I made it live with HTTP URL and URL rewriting. let suppose my domain is www.abc.com Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteCond ...
0
votes
0answers
10 views

Rewriting urls with web.config file?

I need to write a web.config file that redirects urls like they are specified in this .htaccess file. I am deploying to multiple sites so this needs to work when the site is based both at root and in ...
1
vote
0answers
10 views

How to get 2 domain canonical redirect in web.config to work

I have an Umbraco CMS that is hosting 2 web sites with different domains. I need to perform canonical redirects for each using the iis rewrite from the web.config. Example: mydomain1.com -> ...
0
votes
1answer
8 views

Redirect index.php to root, and www to non www with rewrite_mod

someone knows how can i redirect in the .htaccess this rules bellow ? http://www.domain.com/index.php to http://domain.com and http://www.domain.com to http://domain.com many tanks
0
votes
1answer
13 views

How to exclude a RewriteRule?

I have the following RewritRule in my .htaccess what causes a problem for further actions: RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] Now I would like ...
0
votes
2answers
13 views

rewrite part of url using htaccess

I have a url like this: http://localhost/mysite/application/assets/projects/projectname I want this: http://localhost/mysite/projectname. I'm using this code in .htaccess RewriteEngine on RewriteRule ...
0
votes
1answer
6 views

Redirecting with htaccess rewrite map

I am using following code to redirect all url with capital case latter in it to equalant small-case version of same url. RewriteEngine On RewriteCond %{REQUEST_URI} [A-Z] RewriteRule (.*) ${lc:$1} ...
0
votes
1answer
18 views

httaccess URL rewriting

RewriteEngine On Options +FollowSymlinks RewriteCond %{HTTP_HOST} ^example.com$ RewriteRule ^$ http://example.com/index.php?flash=1 [L,R=301] I have a page where I want to rewrite my base url, but ...
0
votes
0answers
15 views

How to Configure UrlRewritingNet on the server side IIS 7 Windows 7 Server

I have finished an ASP.NET web site after making tests. I am using UrlRewritingNet dll from http://www.urlrewriting.net/ Then I have published it in order to upload my server (Windows 7, IIS 7 ...
-2
votes
0answers
15 views

URL rewrite for different folder with same url [closed]

i have same file names on different folder. Like "small", "basic", "advance". domain name something.com . want to show file from folder depending on condition. like this ...
0
votes
3answers
33 views

How to turn /filename.php into /filename/

I can't seem to google this. I'm trying to build my website but I wish to specify the files (ie /filename.php) and turn them into /filename/ in the url and links. I'm not sure if this is url rewrite ...
0
votes
1answer
19 views

mod_rewrite for specific url only

I'm into rewriting a url in different ways. I mean I want to know how to use mod_rewrite so I can do the following: 1- convert a .php to html for a speific url i.e: from www.mydomain.com/news.php to ...
2
votes
1answer
39 views

URL Rewrite Regular Expression to suit all

Brief Explanation I am trying to come up with a smart way of controlling my web page rewrites with as few rewrites as possible. So, for example, if you have the following page translations: ...
0
votes
0answers
18 views

URL redirecting but not with .htaccess?

I have the following problem: Which method of (non .htaccess) URL redirection can I use to tell google that pages with URL. Example - mysite.com/group/12-category/17-article (12 and 17 are category ...
-1
votes
1answer
15 views

SEO Multi language Website (translation file via PHP require) [closed]

I'm setting up a multi-language website and I would like to have your help to take the best decision as regard SEO. I'm going to include the PHP files with translation, in this way: $lang = ...
0
votes
1answer
11 views

Asp.net Url rewriting for variable number of querystring arguments

i need to route an url like this routes.MapPageRoute("id", "Destinations/{param1}_{param2}_{param3}", "~/RealPage.aspx"); The problem is that number of query string parameters may vary: ...
1
vote
0answers
14 views

Rewriting custom tag attributes using IIS Url Rewrite 2.0 and ARR

I've developed a custom grid control that uses data-* attributes to configure how the grid is supposed to work (in a similar vein to how Bootstrap data API components work. For a particular ...
-2
votes
1answer
13 views

Dynamic url re-writing using htaccess

How can I rewrite http://mydomain.com/test/master.php?catid=2&subcatid=8 to http://mydomain.com/test/master.php/catname/subcat using a .htaccess file. Once rewritten, how can I access these ...
1
vote
1answer
34 views

i18n URL format with language parameter always in URL

I'm working on a new website and I have a question regarding internalization (i18n) and SEO. Here's the case. I'm using this CodeIgniter code to translate my website in 2 languages. Let's say these ...
0
votes
1answer
11 views

Rewrite with relative path

I am going nuts over a reqrite rule on my local machine... i even enabled the rewrite log and this is what i get from a single page load on the url it should rewrite: ip - - [21/May/2013:08:13:18 ...
1
vote
1answer
19 views

Implement friendly URLs with product name

I'm currently working on an e-commerce site with the following URL format for individual products: examplesite.com/shop.php?sec=prod&prod=373 Where 373 is an individual product number. I would ...
0
votes
1answer
36 views

url rewritting using .htaccess

I am using codeigniter.There is a url patern: localhost/mysite/application/assets/projects/projectname The projectname part is dynamic. Now I want to rewrite that url to: ...
0
votes
1answer
23 views

Using .htaccess to change directory in url

I am trying to change the url that is displayed in the address bar from mysite.com/blog/wedding-hair/ to mysite.com/services/wedding-hair/ using .htaccess. Using answers from: assigning different ...
1
vote
1answer
24 views

Need URL Rewrite to replace a string in a url

I am looking and looking and coming up with all different patterns, but no such luck. I require a rewrite rule to handle the a replacement of a string xyzlisting with xyz-listing. It may be anywhere ...
0
votes
0answers
17 views

.htaccess rewrite rules: category id page not being changed

I'm new to rewrite rules in .htaccess, and I'm having some trouble. I have the following working well, so that www.mydomain.com/index.php is changed to www.mydomain.com Options +FollowSymLinks ...
0
votes
1answer
21 views

Using two GET variables in .htaccess (having problems outputting)

I'm currently trying to add a second get variable to an existing htaccess rule. I have little experience with the htaccess but using what expressions I know, I think it's missing one element to ensure ...
0
votes
0answers
7 views

htaccess file change url structure

I've been trying to rewrite my URL's with a htaccess file, for my wordpress site. I would change the url structure for better indicization, so I need help to do it. Home page is at: www.aaaaa.it/wp ...
0
votes
0answers
19 views

Redirect rules in Nginx config files won't work

I have a site which is contained in /var/www/html/NavHawk2. It is a codeigniter website. What I needed was to rewrite URLs from /NavHawk2/login to like, NavHawk2/index.php/login and serve the static ...
0
votes
1answer
14 views

rewrite rule wordpress not working

This quetsion has been ask al lot, but however I tried I get always a 404 page in WP I have a templatepage (wp-content/themes/responsivewizzard.php cals: wizzard. -> I Added a page in the admin ...
1
vote
1answer
23 views

IIS7 URL Rewrite ignore rules in sub application

I have MyWebSite and MyApp as shown below: MyWebSite web.config MyApp web.config Pages page.aspx I want the next URL will work: www.mywebsite.com/oldpage.aspx ...
1
vote
3answers
49 views

How to rewriting URL with HTACCESS [duplicate]

This is a line of code on my htaccess file RewriteRule ^([^\.]+)$ details.php And this is working fine with this URL example.com/shiv-sales-corporation Now i want to add .html at the end of URL ...
1
vote
0answers
28 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> ...
0
votes
1answer
15 views

htaccess rewrite all subdomain to index.php

I know this question has been asked a lot but I don't know why it does not work for me :-? this is my htaccess: Options +FollowSymLinks IndexIgnore */* # Turn on the RewriteEngine RewriteEngine On # ...
-1
votes
0answers
22 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 ...
1
vote
1answer
31 views

Using URL Rewrite to change part of URL

I'm trying to use an URL Rewrite on an IIS 8.0 to rewrite existing URL:s on a developer machine. The reason for this is that I don't want to change existing (old) code. What I'm trying to achieve is ...
0
votes
2answers
12 views

Using or ( | ) statement in .htaccess rewrite rules

Instead of writing 2 rewrite rules for pointing to the same page, I though I would be able to do this with one rule using the Or statement ( | ): RewriteRule ^([\d]+)-post[\d]*\.html|#post([\d]+) ...
0
votes
1answer
19 views

MVC htaccess rewrite - hide index

I have a basic MVC structure with a restful uri design of: mysite.com/appdir/:index/:controller/:action/ and I want to hide the index route parameter so my uri looks like: ...
0
votes
0answers
26 views

RewriteEngine to hide extensions and GET

How can I rewrite this URL ? http://website.com/file.php?lang=en to http://website.com/file/en File name and parameters can change, I found a lot of topics put I did not found the combination of ...
0
votes
1answer
27 views

Regex on URL rewrite module

I need a help with Regex on URL rewrite module. I want to apply a rule for the home page. I tried with ^default.aspx, which is working fine when user access the site with /default.aspx But normally ...
0
votes
0answers
15 views

mod_rewrite url simplifying

I would like to setup mod_rewrite such that when a user visits domain.com/user/1123456789, the actual page being shown is domain.com/displayuser.php?userID=1123456789. My intent is to simplify the ...
0
votes
0answers
10 views

.htaccess delete the trailing slash

When I created my website I wanted a url with the three "w" without a trailing slash so I did the following in my .htaccess RewriteEngine On RewriteCond %{HTTP_HOST} ^domain.es RewriteRule (.*) ...
0
votes
1answer
45 views

Handle URL in CodeIgniter

I have a url like "www.site.com/index.php/details/productname" and I get 404 error on that link in codeigniter but the URL www.site.com/index.php/details/ is working fine. I want ...
0
votes
1answer
14 views

IIS Rewrite Rule is not setting HTTP_COOKIE

I'm working with a client who has a mobile site setup through a third party. Currently, we check through IIS whether a user agent matches any of your standard mobile agents in which case we redirect ...
0
votes
0answers
15 views

nginx Rewrite Condition from .htaccess

i just switched over to nginx and everything works fine till now. I just have a big problem with one of my old rewrites: RewriteCond %{REQUEST_URI} !.+/index.php$ RewriteRule ^special/.+/.+/.+\.php$ ...
2
votes
0answers
45 views

How to Deploy Php Application In IIS

I want to do some thing like below In below folder structure application folder contain source of my application which is in PHP and that PHP code use some file from system folder.application ...
0
votes
0answers
16 views

Why do I get a “Forms authentication failed for the request” event on Microsoft Form Authentication?

I've inherited a ASP.NET 2.0 website that uses Microsoft form authentication. The site is running on a Windows Server 2008 32bit which had recently installed the SP2. Since the SP upgrade, the login ...
1
vote
2answers
27 views

.htaccess rewriterule is redirecting me to another site - why

I am trying to do some work in serve_each_drive.php under the url drive_for_london/?pid=12 this is my .htaccess: Options +FollowSymLinks -MultiViews RewriteEngine On RewriteBase / RewriteRule ...
1
vote
1answer
30 views

rewriteRule to make url user friendly

I have two rules. first one to allow request without .php extension and the second one rewrite all request start with /account/(.*)$ to /account.php?action=$1. what's wrong with the account rule? ...

1 2 3 4 5 112