0
votes
1answer
11 views
howto mod_rewrite every request to index.php except real files but exclude one real directory?
Let me explain my situation:
I'm using a MVC framework (CodeIgniter), so every request gets rewritten to my index.php file, which in turn routes this to my classes and functions.
…
1
vote
2answers
18 views
HttpServletRequest.getRemoteAddr() returning wrong address
We need to log the client's IP address from a Seam action. Currently, we're using the code:
ExternalContext context = FacesContext.getCurrentInstance().getExternalContext();
HttpS …
0
votes
3answers
22 views
problem with RewriteRule and apache
I have a SSL certificate that is registered to my www domain, but all my urls point to my domain without www.
i tried this sentence:
RewriteRule ^[https://mydomain.org](.*)$ https …
1
vote
4answers
46 views
can you get me * out aaa.*.domain.com using regex ?
Hi,
No matter how hard I try I can't get this.. This matches the whole domain only when it's format is aaa.bbb.ccc .
^[^.]+\.[^.]+\.[^.]+$
Our domain name is static (domain.com …
0
votes
1answer
30 views
Linking Apache to Tomcat with multiple domains.
Okay, so I've been working for a while on this, and have been searching, but so far I have not found any answers that actually answer what I want to know. I'm a little bit at the …
0
votes
1answer
29 views
Apache 2 Upgrade Killed Our .htaccess, Can’t fix, please help!
We were forced to upgrade to Apache 2 today and as soon as we did our rule set that was working for months stopped working.
The behavior it shows is completely ignoring the .htace …
0
votes
0answers
43 views
Multiple Tomcat Instances [closed]
I have One Staic IP on one Server which is publically accessible over the Internet. I am running an Apache WebServer on that Server.
How can I make - 3 Web Applications (On Tomc …
0
votes
5answers
70 views
php apache url rewrite
I have an url with the following format:
domain/product.php?name=product a
Now I need to rewrite this to:
domain/product a(including the space in the word) like:
http://www.direct …
0
votes
2answers
11 views
.htaccess File Options -Indexes on Subdirectories
I have the following .htaccess line, simple no indexes on root.
Options -Indexes
What do we add so it propagates to any sub directory instead of having to create one file for ea …
0
votes
0answers
27 views
Was Apache running as root? [closed]
I am re-thinking our server's permission and group strategy. So I was trying to check what permissions was needed with the current setup for Apache to access the files.
I changed …
1
vote
5answers
65 views
Prevent file differences between live and staging websites AND system scripts (PHP)
I'm trying to find a good way to maintain PHP configuration differences between a dev and live environment. I know how to handle differences when scripts are run by Apache (see bel …
0
votes
1answer
30 views
Regex Proxy Server
I control access via a proxy server and run some regex on every request. For prototype I have used curl, regex and php. Obviously this won't put up with any serious load. Can anyon …
-1
votes
1answer
76 views
How can I debug a Perl CGI script?
I inherited a legacy Perl script from an old server which is being removed. The script needs to be implemented on a new server. I've got it on the new server.
The script is pret …
0
votes
0answers
40 views
Cant get XAMPP Server to run? [closed]
I recently installed XAMPP server with PHP, MySQL, and Apache, and I had a friend help me load and configure it and it worked fine. I was able to play around with it, and load anyt …
0
votes
1answer
14 views
htaccess file adds the virtual directory address to the url
I wrote a script to add shtml extension to all requests that don't have it. This is it:
Options +FollowSymlinks
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond …
