20
votes
5answers
2k 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 …
9
votes
0answers
136 views
Suspicious .htaccess File [closed]
This was uploaded to one of my FTP folders. I'm not familiar with Apache, but still curious - can someone tell me what type of dastardly act this file is trying to commit? Thanks!
RewriteEngine On
…
9
votes
9answers
1k 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 …
8
votes
6answers
427 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 …
7
votes
4answers
311 views
How to programatically access a password protected website?
Part of our website is protected with .htaccess style password protection. When you try to access this area of the website the web browser pops up a dialog asking for your username and password.
I …
7
votes
6answers
568 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 …
7
votes
5answers
346 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 …
6
votes
5answers
1k 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.
6
votes
7answers
741 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.:
…
5
votes
3answers
685 views
Translating an Apache .htaccess file to an IIS web.config
Hello there,
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 …
5
votes
5answers
196 views
Manage multiple websites from one domain
Hello,
I have been looking for a while now to find a solution to accomplish the following system.
I would like to build a PHP system on, let's say, domainA. On this domainA I will allow an …
5
votes
4answers
599 views
Want to redirect all visitors except for me [.htaccess]
Basically I'm about to start work on a site and I'd like something that I can add into my .htaccess file (or elsewhere) that'll work like this pseudo code: (my ip will be in place of 127.0.0.1)
if …
5
votes
8answers
830 views
Redirecting non-www URL to www
I'm using Helicon's ISAPI Rewrite 3, which basically enables .htaccess in IIS. I need to redirect a non-www URL to the www version, i.e. example.com should redirect to www.example.com. I used the …
4
votes
7answers
105 views
Performance-oriented way to protect files on PHP level?
I am looking for some input on something I have been thinking about for a long time. It is a very general problem, maybe there are solutions out there I haven't thought of yet.
I have a PHP-based …
4
votes
3answers
116 views
Symfony: email address as request parameter
I'm having some issues with passing an email address in a url to a symfony app.
The url looks like
example.com/unsubscribe/email/me@example.com
It will always result in a sfError404Exception, …
