Refers to URL rewriting, or the restructuring of a URL to improve readability and/or search engine optimization (SEO).

learn more… | top users | synonyms

0
votes
0answers
7 views

htaccess removing certain parts of URL

I have been using htaccess to remove rewrite certain URLs, however I am looking at something a little more complicated at the moment. Our website blog (WordPress) used to have links like this: ...
0
votes
0answers
8 views

iis7 rewrite module setting up a rule

I have been trying for 2 days without success to setup a rewrite rule which is succesful when you 'test the patten' Anyway I am using wildcards and have found browsers even cache the rules making ...
0
votes
0answers
22 views

Helped to Make Url Rewrite

I am using following rewrite rules to redirect or not on SSL. First rule "Redirect to SSL" is working fine but second rule does not work as i required. If domain is mysite.tv/api then it do not ...
0
votes
1answer
19 views

Point to folder, not redirect htaccess

i have this htaccess, which redirects the user from stjernekaffe.dk to the directory. RewriteEngine on RewriteCond %{REQUEST_URI} ^/$ RewriteRule (.*) ...
0
votes
1answer
20 views

Htaccess rewriting URL - multiple levels

This is probably a duplicate, I'm sorry in advance. I'm having a bit of a thick moment and need some help with a rewrite rule: RewriteRule ^([a-zA-Z0-9_-]+)/?$ /index.php?name=$1 [L] RewriteRule ...
0
votes
1answer
13 views

htaccess rewrite get string to integer

I want to receive a letter from a $_GET after making a post and rewriting an url with htaccess. For example: $_POST['setting'] = 'w'; After a post I'm making a redirection like this: /*more post ...
0
votes
0answers
9 views

IIS7 Rewrite rule with querystring

I'm a noob on rewrite syntax but I need a rule for my VS2010 web.config file that converts http://mydomain.com/<anydirectoryname> into ...
1
vote
2answers
30 views

php url rewriting in .htaccess

I have tried all i could up to no avail, checked all web tutorials on url .htaccess rewriting, none solved all my problem exclusively, my programming experts help me with this, i have a php web ...
0
votes
1answer
11 views

Redirect Loop - IIS7

Getting a redirect loop when using the below rule on IIS7 using the rewrite module. <rule name="redirect" stopProcessing="true"> <match url="test" /> ...
0
votes
0answers
7 views

URL Rewriting to include GET information

The title explains it terribly, but basically I want to rewrite... localhost/cp2/pages/?name=12345 to localhost/cp2/?app=pages&name=12345 My code was: RewriteRule ^pages/$ ...
1
vote
1answer
13 views

htaccess redirect when non development domain is active

I have a domain staticbackup.mydomain.com which has a static backup of the main site incase of server failure I can quickly switch the www. cname to point to staticbackup.mydomain.com (A record) On ...
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
0answers
9 views

how to create mod rewrite rules for folders

I want to redirect everything after the folder /listen/ from the old domain to the new one, example www.example.com/listen/abc www.example.com/listen/def and so on, there are many pages in that ...
0
votes
0answers
9 views

Rewrite rule apache

We are using liferay framework and using proxypass we are hosting website as example.com and also ssl is configured. But issue we have forced apache to use https using this rewrite rule ...
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
48 views

URL rewriting via Wordpress Rewrite or .htaccess [SOLVED]

JUMP TO EDIT8 TO SEE HOW I SOLVED THIS Let's say I have a Wordpress blog: www.animals.com I have a certain PHP file in my theme directory: www.animals.com/wp-content/themes/mytheme/db.php Also, I have ...
0
votes
2answers
17 views

Apache URL rewrite: works with [R] flag, but not without

I am trying to rewrite a url like this: http://www.example.com/~username to http://www.example.com/index.php?user=username The code I have is this: RewriteRule ^/~([a-zA-Z]+)/?$ ...
1
vote
1answer
14 views

Apache redirect everything under a folder except the folder itself

At some point in the past, our site had a structure like www.example.com/departments/it or www.example.com/departments/asdf. Then, the the paths changed to something like www.example.com/it or ...
-1
votes
1answer
16 views

Nginx Rewrite Rule for all .PHP files/requests to be parsed by index.php

Is it any magic rewrite (like it does on Apache) for nginx to be able to rewrite URLs like '/submit.php' to be able to process them from index.php? We have lots of 404 not found errors because of the ...
0
votes
0answers
25 views

.htaccess redirect on both domain and /~user/

I've got a problem with rewriting urls when using a domain and x.x.x.x/~user Both these should redirect to the users index.php and then I handle which page the visitor wishes to see by checking the ...
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
1answer
31 views

Apache vhost rewrite goes wrong with existing folders

I want my vhost to rewrite urls such as: http://dev.example.com/cool/story/bro To: http://dev.example.com/index.php?url=cool/story/bro Unless specifying an existing file such as: ...
3
votes
1answer
30 views

Rewrite dynamic urls

I have a user.php file that contains code for different pages - account, data and home. They are currently accessed through a dynamic url with GET parameters like so: ...
0
votes
1answer
47 views

URL Rewrite => Variable to Subdomain

In my .htaccess file, this code works fine : RewriteCond %{HTTP_HOST} ^(.+).mydomain.com$ RewriteRule ^(.*)$ http://mydomain.com/profile.php?username=%1 [R,L] For example, when I write this URL ...
0
votes
0answers
17 views

Nginx rewrite modify url regular expressions (PCRE)

Need to convert URLs like: mysite.com/UserName ... mysite.com/UserName/?foo=dododo ... mysite.com/v?m=dododo to URL like this: mysite.com/?app=UserName ... mysite.com/?app=UserName&foo=dododo ...
0
votes
3answers
26 views

Exclude subdirectory from Expression Engine official .htaccess index redirect

I have found a great number of suggestions online, but none of them seem to work in my case. I have an Expression Engine install in the root of my site. In a subdirectory named "helpone", I have ...
0
votes
1answer
8 views

Mod rewrite / remove slash behind .html

I need a mod rewrite 301 that remove a slash behind the .html from the url. Example: Good URL: http://www.example.org/some-stuff-t123.html Bad URL: ...
0
votes
0answers
14 views

Rewrite URL subfolders

I've gotten pretty far with rewriting my URL with all you're help. Thank-you so much. I'm looking for some tips on how to do the following... My URL is currently: ...
0
votes
1answer
10 views

Redirecting Subdir to HTTPS

I have a site, mydomain.com/secure which I only want to be accessible via HTTPs. This is mapped as a virtual directory like this: -wwwroot --secure (Virtual directory, bound on port 443 only) - ...
1
vote
2answers
62 views

Clear URL with .htaccess

I am pretty new to webdesign and haven't been able to figure this one out.. I am using HTML5Boilerplate as a template for my new website. The .htaccess file that ships with the template rewrites ...
1
vote
1answer
17 views

htaccess redirect <hostname>/?area=0 to <hostname>/

I am simply trying to redirect /?area=0 link to / .. hostname can be anything. I have tried: redirectMatch 301 /?area=0 /index.php RewriteRule ^/?area=0$ /index.php$1 [R=301,L] Also tried with some ...
1
vote
1answer
32 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? ...
0
votes
1answer
15 views

.htaccess rewrite, rewove filename from URL

I have a domain where I uploaded my html in the root as varg.html, about.html and contact.html. Therefore my URL is http://vargdesignkollektiv.se/varg.html but clearly I wan to remove varg.html for my ...
0
votes
1answer
28 views

Check if file exists on Nginx using regex

I'm trying to translate some htaccess files to Nginx vhost configuration, and i'm having trouble with this: RewriteCond %{DOCUMENT_ROOT}/img/id_$1_$2 -f RewriteRule ^id/(.+)/(.+)$ img/id_$1_$2 [NC,L] ...
1
vote
1answer
32 views

IIS 7 Rewrite Rule with SSL Redirect

I am having and problem using IIS Rewrite rules to handle all scenarios of redirecting an old domain to my newdomain and newly enforcing a SSL connection. Here are the rules as I have them configured ...
0
votes
1answer
9 views

.htaccess Multiple subdirectory rewriting to www-root

I have the following folder structure: www-root Backend Config Etc Frontend Administration StoreFront I would like to be able to access the directories from the main url and hiding the ...
1
vote
1answer
29 views

cakephp rewrite rule for existing website with .htm

How to fix my problem for an existing website converted to a cakephp application. The previous website has *.htm extensions. Is this something what needs to be done in the .htaccess file? The problem ...
1
vote
0answers
42 views

Rewrite rule for subdomain, nice URL variable and slash

I struggle with setting up proper mod_rewrite rule for my domain. I was never any good at regexp-kinda expressions, but every documented tutorial I just fail to use for myself. Domain: example.org ...
0
votes
0answers
9 views

why is content-negotiation not as popular as rewrite or redirect?

I am trying to grasp the conceptual differences between rewrite redirect multiviews as methods for getting urls w/o the ".html" extension to resolve properly. Right now extension-less urls are ...
0
votes
0answers
9 views

mod_rewrite. Removing spurious query strings from site root

Showing up in webmaster tools are a couple of query strings that have attached themselves to my site route. I have tried the following to remove the string but have failed miserably. Any assistance, ...
0
votes
1answer
37 views

URL rewriting for video file htaccess

I want rewrite url http://site.com/videoplayback?pkey=05131305222303&hkey=a7432d324546a9b2c24abb4e81a26e67&tkey=l4i5w5s444&fkey=05131305222303.mp4 to ...
0
votes
1answer
29 views

Nginx rewrite wordpress page

I have WordPress (example.com) on nginx with created page A, which has permalink example.com/a . Wordpress doesn't have page with permalink example.com/b . I want to inner rewrite uri /b to show page ...
0
votes
1answer
26 views

IIS rewrite virtual folder

I need to create a URL rewrite rule in IIS for the following: From: http://hostname/virtual_path_folder/myisapi.dll?a=1&b=1 To: http://hostname/myisapi.dll?a=1&b=1 Basically, I'd just ...
0
votes
1answer
20 views

How to prevent nginx rewriting again after adding index file?

I'm trying to write some nginx rewrite rules for a web server, and one of them is as simple as: index index.html; ... rewrite ^/(.*)$ /web/$1 break; This rule adds a /web before the URI. It works ...
1
vote
1answer
12 views

I need to remove /en from all URLs, would like to use .htaccess

Using Joomla and trying to stop using JoomFish, but for the time we did use it, other sites linked to our pages as "basedomain.org/en/everypage". Now those links go to 404 errors. How do I use ...
0
votes
3answers
43 views

nginx /index.html to / rewrite

I am trying to rewrite /index.html to / for SEO purposes (stupid search engines which confuse index.html with / and penalize for duplicate content) -- also to reconcile web analytics data. I've tried ...
0
votes
1answer
13 views

Wordpress Custom Post Type rewrite_tag not replaced in editor

Hey this one is killing me! I have a custom post type called 'features'. The archive page for it is currently visible via: mysite.com/features/ and currently the single feature is at: ...
0
votes
0answers
13 views

Redirect between subdomains without changing address

How to redirect from sub1.mydomain.com to sub2.mydomain.com without changing address on IIS ( it's a shared hosting )? I've used Rewite but it changed address. <rule name="redirect" ...
0
votes
2answers
41 views

Rewrite urls using Apache PHP

I have a number of urls that are stored in a database, and thus instead of adding a rewrite rule in .htaccess for every url, I am using the following code in htaccess to give the control to PHP code ...
0
votes
2answers
19 views

Basic Nginx rewrites

What would be the best equivalent to this Apache2 rewrite in nginx? RewriteRule ^programmes/([A-Za-z0-9])? /index.php/programmes/?alpha=$1 [QSA,L] I've tried the following but it doesn't seem ...

1 2 3 4 5 48