Tagged Questions

URL rewriting module for the Apache web server. It is commonly used for so-called "pretty" URLs because of its ability to redirect on the server side (transparent to clients and their browsers), but also provides the power and flexibility to perform various request handling tasks beyond simple substitutions.

learn more… | top users | synonyms (3)

48
votes
6answers
5k views

Hidden features of mod_rewrite

There seem to be a decent number of mod_rewrite threads floating around lately with a bit of confusion over how certain aspects of it work. As a result I've compiled a few notes on common ...
16
votes
5answers
1k views

mod_rewrite GUI?

Anyone have a graphical tool for developing mod_rewrite rules. Ideally it would display a pipeline of rewrites and then when given an instance of a uri would show the transforms as the get applied. ...
15
votes
4answers
25k views

How does RewriteBase work in .htaccess

I have seen this in a few .htaccess examples RewriteBase / It appears to be somewhat similar in functionality to the <base href=""> of HTML. I believe it may automatically prepend its value ...
13
votes
6answers
8k views

Do you have to restart apache to make re-write rules in the .htaccess take effect?

I have pushed my .htaccess files to the production severs, but they don't work. Would a restart be the next step, or should I check something else.
12
votes
2answers
357 views

Why is it a security risk to allow encoded slashes in a URI?

I have a situation where I want encoded slashes in a URI (%2F), but my .htaccess rules are ignored when I make the request, sending me instead to a 404 page. I quickly found the Apache directive ...
12
votes
5answers
7k views

mod_rewrite rule to redirect all requests except for one specific path

I'm trying to redirect all requests to my domain to another domain using mod_rewrite in an Apache 2.2 VirtualHost declaration. There is one exception to this -- I'd like all requests to the /audio ...
11
votes
2answers
70 views

apache rewrite rules issue for specific pages

I have problem with my .htaccess redirections. When I type: http://www.domain.com/contact it goes to the index.php and not the contact.php here's my .htaccess: Redirect 301 /clients ...
11
votes
2answers
86 views

.htaccess mod_rewrite performance

i searched a lot on SOF about .htaccess and mod_rewrite and i want to performance wise which one is faster: RewriteRule ^([a-z0-9]+)/?$ index.php?id=$1 [NC,L] RewriteRule ^(.*)/?$ index.php?id=$1 ...
10
votes
2answers
64 views

rewrite urls for product name

i want to rewrite a rule for my products. i want to use the id and name in the url separated by a dash like this: 123-name means product id = 123 and name = name so in my php i can get the ...
10
votes
1answer
43 views

.htaccess page and lang error

i try to look on stackoverflow but i can't find my answer. so i need to find out which domain which sub-domain the user is and which page is loading. eg: en.domain.com/contactus this should ...
10
votes
1answer
116 views

mod_rewrite and GoDaddy

I really have only a fair idea of what I am doing. Sorry. This is what I did to rewrite URLs like these: http://example.com/foo/bar/news/1-category-name/2-item-name ...
10
votes
1answer
295 views

Block by useragent or empty referer

A stranger bot (GbPlugin) is codifying the urls of the images and causing error 404. I tried to block the bot without success with this in the bottom of my .htaccess, but it didn't work. Options ...
10
votes
4answers
926 views

trouble with utf-8 chars & apache2 rewrite rules

I see the post http://stackoverflow.com/questions/2565864/validating-utf-8-in-htaccess-rewrite-rule and I think that is great, but a more fundamental problem I am having first: I needed to expand ...
10
votes
7answers
24k views

.htaccess rewrite to redirect root URL to subdirectory

Trying to get www.example.com to go directly to www.example.com/store I have tried multiple bits of code and none work. Please help! What I've tried: Options +FollowSymlinks RewriteEngine on ...
10
votes
8answers
12k views

How do I ignore a directory in mod_rewrite?

I'm trying to have the modrewrite rules skip the directory vip. I've tried a number of things as you can see below, but to no avail. # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On ...
10
votes
5answers
924 views

Apache Mod-Rewrite Primers?

I am wondering what primers/guides/tutorials/etc. are out there for learning to rewrite URLs using Apache/.htaccess? Where is a good place to start? My primary interest is learning how to point ...
9
votes
3answers
1k views

How to rewrite URL without refresh, like GitHub.com

I was browsing GitHub.com and I noticed when looking at the source for a repository, and you click on a file, the source code slides in and the URL changes, but it doesn't appear as if the page has ...
9
votes
5answers
580 views

Is it better to handle friendly/clean/pretty URLs with mod_rewrite or a language like PHP?

I'm developing my first decent-sized PHP site, and I'm a bit confused about what the "right way" (assuming there ever is such a thing) to handle clean/friendly/pretty URLs in the application. The way ...
9
votes
7answers
1k views

What happens first? .htaccess or php code?

If I use mod_rewrite to control all my 301 redirects, does this happen before my page is served? so if I also have a bunch of redirect rules in a php script that runs on my page, will the .htaccess ...
9
votes
10answers
8k views

mod_rewrite equivalent for IIS 7.0

Is there a mod_rewrite equivalent for IIS 7.0 that's a) more or less complete b) suitable for a production environment, i.e. battle-tested/dependable/secure Do you have an experience-based ...
8
votes
2answers
63 views

.htaccess newbie issue using mod_rewrite

I need to create SEO-friendly urls for my site. I found out I can use .htaccess to rewrite them. So I tried this: > http://www.domain.com/page/1/mypage > http://www.domain.com/user/2/myuser ...
8
votes
2answers
46 views

.htaccess with products (string)

i use .htaccess and i have a rule that allow me to dynamically look for product in my database. so someone can click on a link like this one: www.domain.com/product/modular-plastic-lunch-set.html ...
8
votes
1answer
123 views

Pretty URLs in PHP frameworks

I know that you can add rules in htaccess, but I see that PHP frameworks don't do that and somehow you still have pretty URLs. How do they do that if the server is not aware of the URL rules? I've ...
8
votes
5answers
180 views

CakePHP - Selective SSL

How do I force HTTPS for certain parts of a site, e.g. a login page or register page, and use HTTP for the rest of the site?
8
votes
2answers
57 views

Issue with mobile website

I have a mobile version of my site that I have an issue with. My main site is (let's say) domain.com and my mobile site is (let's say) m.dom.com I have common js/css and images I use for both and I ...
8
votes
2answers
163 views

Change the DirectoryIndex based on a domain/sub-domain in .htaccess

I have a shared hosting with one domain and one sub-domain (for mobile and clients). Each domain and sub-domains has different default index pages. The hosting company told me to put everything in my ...
8
votes
4answers
2k views

.htaccess directives to *not* redirect certain URLs

In an application that heavily relies on .htaccess RewriteRules for its PrettyURLs (CakePHP in my case), how do I correctly set up directives to exclude certain directories from this rewriting? I.e.: ...
7
votes
1answer
64 views

easyphp .htaccess rules

i need to rewrite rules in my installation of easyphp on windows 7. i need to make sure the rules are loaded correctly and i don't have to create tons of rules. also, when i copy the .htaccess to my ...
7
votes
1answer
94 views

Ignore trailing slash with Apache Rewrite

I'm using mod_rewrite to redirect like so: RewriteRule (work)/?$ $1.php [L] This sends any URL ending in /work or /work/ to work.php The problem is, when a trailing slash is included, it treats it ...
7
votes
3answers
208 views

URL Rewrite Issue with Mango Blog (404 error)

I am working on setting up an instance of Mango Blog on an Ubuntu Server running Apache 2 HTTPD and Tomcat 6 with Railo 3.1.2. I was able to get everything setup until I started trying to implement ...
7
votes
2answers
3k views

Is there a way to force apache to return 404 instead of 403?

Is there a way how I can configure the Apache web server to return a 404 (not found) error code instead of 403 (forbidden) for some specific directories which I want to disallow to be accessed? I ...
7
votes
6answers
7k views

How to remove “index.php” in codeigniter's path

How do I remove the "index.php" sticking out in every path in codeigniter somewhere in the center? I want clean non index.php-fied URLs?
7
votes
4answers
6k views

How to encode special characters using mod_rewrite & Apache?

I would like to have pretty URLs for my tagging system along with all the special characters: +,&,#,%, and =. Is there a way to do this with mod_rewrite without having to double encode the ...
7
votes
4answers
3k views

mod_rewrite for trailing slash problem

I'm pulling my hair out on what should be an insanely simple problem. We are running WebSphere IHS (Apache) through an F5 BigIP. BigIP is doing the https translation for us. Our url (changed for ...
7
votes
4answers
10k views

How to rewrite an URL on a JBoss server?

I would like to redirect/rewrite this two kinds of URLs: mydomain.com -> newdomain.com mydomain.com/specificPage -> newdomain.com/newSpecificPage mydomain.com/anyOtherPage -> ...
7
votes
4answers
6k views

Apache rewrite based on subdomain

Im trying to redirect requests for a wildcard domain to a sub-directory. ie. something.blah.domain.com --> blah.domain.com/something I dont know how to get the subdomain name to use in the rewrite ...
6
votes
1answer
86 views

can't escape dot (.) at my mod_rewrite code

i need to transform following address of my site: http://mysite.com/do.php?id=123.W456/789 into http://mysite.com/123.W456/789 i've almost got succeed in this noble purpose with following .htaccess ...
6
votes
4answers
214 views

Rewriting dynamic URLs

I' trying to rewrite 1 dynamic URL to another dynamic URL as follows; /category?category=News to /categorysearch/result/?q=news I was wondering if anyone had an idea on how this can be done in ...
6
votes
1answer
69 views

Short URL system: How to redirect the Custom URLs?

I'm trying to make a tinyurl-like service for my company, and so far looks good, but now I have a problem I can't solve. Lets say the URL I generate is "www.thecompanyiworkfor.com/shorturl/2jh62/". ...
6
votes
1answer
65 views

Quick mod_rewrite help on GoDaddy

This htaccess works fine locally, but on GoDaddy the URL isn't caught by the rewrite engine. RewriteEngine on RewriteRule ^products/amsoil/(.*)/$ /products.php?amsoil=$1 [L] RewriteCond %{HTTP_HOST} ...
6
votes
1answer
137 views

Apache mod_rewrite redirect file type to another domain

How can I use mod_rewrite to send requests for a particular file type to another domain name (server)? Example: If you request http://example.com/potato.png then it'll redirect to ...
6
votes
2answers
338 views

Mod Rewrite Regex - Multiple Negative Lookaheads

I currently have the working Mod Rewrite Regex: RewriteEngine On RewriteCond %{QUERY_STRING} ^(.*)$ RewriteRule ^(.*/)?((?:cmd)[^/]*)/((?!(?:cmd)[.+]*)(.+)) $1?$2=$3&%1 [L] That regex takes the ...
6
votes
3answers
1k views

mod_rewrite/GoDaddy problem

Ok, so I really don't know much about mod_rewrite and I'm looking over the apache docs and still not figuring this out. Here is my htaccess (which is mostly just copy & pasted from a site I ...
6
votes
1answer
2k views

mod_rewrite: what does this RewriteRule do?

Given these conditions (I know what they mean/do): RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d What does the first rule do? ...
6
votes
2answers
10k views

.htaccess mod_rewrite - how to exclude directory from rewrite rule

I have 8 lines of rewrite rules in my .htaccess file. I need to exclude two physical directories on my server from these rules, so they can become accessible. For now all requests are sent to ...
6
votes
11answers
13k views

.htaccess not working (mod_rewrite)

I have not having any luck getting my .htaccess with mod_rewrite working. Basically all I am trying to do is remove 'www' from "http://www.example.com" and "https://www.example.com". If there is ...
6
votes
2answers
574 views

foo.com/alice vs. foo.com/users/alice

It's of course nice to give users friendly URLs for their content on your site. But how best to do that? There are a lot of advantages to something like foo.com/users/alice, most importantly that ...
6
votes
1answer
839 views

Mod_rewrite with godaddy

I'm trying to get mod_rewrite to work on a client's website who insisted that we use Godaddy web hosting. She's got a shared linux hosting account. Will mod_rewrite work (using .htaccess) and if so, ...
6
votes
3answers
2k views

mod_rewrite with spaces in the urls

I need to set up some RewriteRules to redirect a URL which has a space in it. I've tried this: RewriteRule ^article/with%20spaces.html$ /article/without_spaces.html [R=301,L] ... but it doesn't ...
6
votes
7answers
10k views

Zend Framework on nginx

The Zend Framework based site I have been working on is now being migrated to its production server. This server turns out to be nginx (surprise!). Naturally the site does not work correctly as it was ...

1 2 3 4 5 118