Directory-level configuration file found mostly on Apache web servers, allowing webmasters to rewrite paths, authenticate users, and specify custom error documents.
116
votes
18answers
2k views
Cached, PHP generated Thumbnails load slow: How to find problem/solution from Waterfall graphs?
Question Part A ▉ (100 bountys, awarded)
Main question was how to make this site, load faster. First we needed to read these waterfalls. Thanks all for your suggestions on the waterfall readout ...
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 ...
35
votes
11answers
17k views
HTTP authentication logout via PHP
What is the correct way to log out of HTTP authentication protected folder?
There are workarounds that can achieve this, but they are potentially dangerous because they can be buggy or don't work in ...
34
votes
7answers
36k views
Access-Control-Allow-Origin Multiple Origin Domains?
Is there a way to allow multiple cross-domains using the Access-Control-Allow-Origin header?
I'm aware of the *, but it is too open. I really want to allow just a couple domains.
As an example, ...
21
votes
5answers
3k views
Redirect 'myapp.com' to 'www.myapp.com' in rails without using htaccess?
Using Morph Labs' Appspace to deploy a site means no automated way to redirect 'myapp.com' to 'www.myapp.com' (and no access to .htacess).
Is there an in-rails way to do this? Would I need a plugin ...
20
votes
7answers
11k views
Create Subdomains on the fly with .htaccess (PHP)
I am looking to create a system which on signup will create a subdomain on my website for the users account area.
e.g. johndoe.website.com
I think it would be something to do with the .htaccess ...
18
votes
2answers
91 views
.htaccess or symblink
i have a website with multiple folders and i was trying to fix them in my .htaccess, after a little while i have a big .htaccess with rules that conflits
now everytime i want to add a folder i have ...
16
votes
6answers
1k views
Why avoid CGI for Python with LAMP hosting?
I have been using PHP for years. Lately I've come across numerous forum posts stating that PHP is outdated, that modern programming languages are easier, more secure, etc. etc.
So, I decided to start ...
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.
11
votes
4answers
139 views
Can I ban or restrict a country based on IP?
I get 6-10 sign ups from places like Nigeria and Ghana in Africa. I'm currently capturing IPs so is it possible to restrict a range of IPs from a specific country?
If I can retrict them does it ...
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
65 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
2answers
3k views
How to append a path to PHP's include_path in .htaccess
Currently on my site I'm using statements like:
include 'head.php';
include '../head.php';
include '../../head.php';
depending on how many nested folders deep I am. I'm sure there is a better way ...
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
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
5answers
13k views
Deny direct access to all .php files except index.php
I want to deny direct access to all .php files except one: index.php
The only access to the other .php files should be through php include.
If possible I want all files in same folder.
UPDATE:
A ...
9
votes
6answers
1k views
How do I gzip my web files
As prescribed by Yahoo!, gzip'ng files would make your websites load faster. The problem? I don't know how :p
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 ...
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 and params
i digg on the internet about .htaccess and rewrite rules i need to do with my site.
i saw something i dont understand and want to know what it means
i am wondering what is the difference between the ...
8
votes
1answer
57 views
.htaccess r=301 vs r=302
I am creating rules in my .htaccess for mobile, or bad pages etc...
I am using these rules:
rewriterules badpage /goodpage.html [r=302]
rewriterules iphone /iphone.html [r=301]
Which one is ...
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
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
1answer
380 views
Faking the 'path' of a cookie - via .htaccess / javascript / or otherwise?
Background
I have php/js software (Piwik), which sets a cookie to track visits to the site.
Our site (ie; not Piwik) is setup so that all URLs (except for resources) are written back to ...
8
votes
4answers
655 views
URL/Subdomain rewrites (htaccess)
Say I have the following file:
http://www.mysite.com/images/folder/image.jpg
I want to serve it on
http://s1.mysite.com/folder/image.jpg
How can I do a htaccess rewrite to point it to it?
Like ...
8
votes
4answers
422 views
.htaccess or PHP protection code against multiple speedy requests
I am looking for ideas for how I can stop external scripts connecting with my site. I'm looking for the same kind of idea behind Google. As in if a certain amount of requests are made per a certain ...
8
votes
3answers
4k views
Translating an Apache .htaccess file to an IIS web.config
I developed an application on my local using PHP, MySQL and Apache and it has a .htaccess file containing this:
#Setting the default handler.
DirectoryIndex home.do
<IfModule mod_mime.c>
...
8
votes
1answer
6k views
Popular techniques to debug .htaccess
I'm a self-taught coder and I like to debug by echoing suspicious variables and commenting out code.
Lately, I've had to learn more about the .htaccess file. I need it to do things like interpret ...
8
votes
4answers
9k views
.htaccess - Is it possible to redirect post data?
I have a website where all requests are redirected silently (via .htaccess) to index.php and then PHP is used to show the correct page (by traversing the REQUEST_URI).
I was wondering if it's ...
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
4answers
626 views
How to display Apache's default 404 page in PHP
I have a webapp that needs to process the URI to find if a page exists in a database. I have no problem directing the URI to the app with .htaccess:
Options +FollowSymlinks
RewriteEngine on
...
7
votes
1answer
527 views
Add Expire Headers in php cant make it work
I have Yslow add-on installed
When I checks my application in Yslow I get Add Expires headers which I don't know
I searched for relevant questions in SO and also Google I found this method ...
7
votes
4answers
7k views
Mobile Redirect using htaccess
I have a website called
www.website.org
I have a mobile website called
m.website.org
I want to use an htaccess to automatically redirect the main website URL to the mobile version..
However, ...
7
votes
5answers
371 views
htaccess conditionals
I have setup htpasswd authentication on my live site and it works great, but I don't want to be asked for a password when I am working on the development environment.
In my httpd.conf file I have:
...
7
votes
1answer
2k views
Difference between mod_deflate and zlib output_compression
Can anyone tell me the difference between using mod_deflate and zlib output_compression?
I understand that zlib is done in PHP and mod_deflate is done in Apace, my .htaccess file looks like:
...
7
votes
3answers
4k views
How to remove .htaccess password protection from a subdirectory
I have password protected my entire website using .htaccess but I would like to expose one of the sub directories so that it can be viewed without a password.
How can I disable htaccess password ...
7
votes
6answers
4k views
Why isn't my javascript & css caching?
It's appears ONLY javascript and css are not caching ... but images are caching.
I am using Firebug and when I refresh the page, I notice in Firebug a lot of 200 HTTP responses for js/css but am ...
7
votes
4answers
12k views
.htaccess or .htpasswd equivalent on IIS?
Does anyone know if there is an equivalent to .htaccess and .htpassword for IIS ? I am being access to migrate an app to IIS that uses .htaccess to control access to sets of files in various URLs ...
6
votes
5answers
58 views
+50
redirect 404 to similar urls
i have a website with stories in it. i can have multiple type of stories within multiple categories like:
children
romance
scifi
action
thriler
quests
the sotries are stored (i have a mysql db) ...
6
votes
2answers
54 views
store constant variable on server via .htaccess
I would like to store the INDEX_URL constant the easiest way possible.
There is a developer site and a normal site. If there is any change on the developer site,
I would like to just copy the entire ...
6
votes
1answer
38 views
How can I configure an .htaccess of a sub-directory so that it COMPLETELY ignores the .htaccess of any parent directories?
How can I configure the .htaccess of a sub-directory so that it COMPLETELY ignores the .htaccess of any parent directories?
Not just any rewrite rules, but EVERYTHING.
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 ...