Apache (HTTP Server) /əˈpætʃiː/ is a modular cross-platform web server software with a large variety of features(called modules) including SSL, compression, log, proxy and server-side programming language interfaces like Perl, Python, Tcl, and PHP.
1
vote
2answers
50 views
Mod-rewrite rule broken after host upgrade to Apache 2.4
I use the following code on my site to remove php extension from links:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond ...
0
votes
0answers
3 views
PHP string array UTF-8 encoding fails [migrated]
Everything is set to UTF-8 (file encoding, MySQL [however I don't use it], Apache, meta, mbstring etc...) but check this out:
$s="áéőúöüóűí";
echo $s; //works perfectly
echo $s[0] // doesn't work. ...
0
votes
0answers
11 views
Shorten the URL in apache2.conf [duplicate]
I've just started using apache and I'm trying to change the urls from www.test.com/dashboard.php/page1 to www.test.com/page1 in appache's config file. This has to be done for all URLs so I'm doing it ...
1
vote
1answer
33 views
mod_rewrite doesn't work at all
I have my small website (made for study purposes) on localhost and I am trying to get .htaccess working (note that I am a complete beginner to .htaccess). So far, I have discovered that .htaccess is ...
2
votes
1answer
63 views
How do I block a user-agent from Apache
How do I realize a UA string block by regular expression in the config files of my Apache webserver?
For example: if I would like to block out all bots from Apache on my debian server, that have the ...
3
votes
1answer
57 views
Standard Wordpress mod_rewrite rules interacting with one of my own rules are causing all requests for a certain page to be sent to the homepage
I have WordPress 3.5.1 installed on Ubuntu 12.04 LTS. I'm running Apache 2.2.22.
NOTE: I can't share the domain that I'm working on, and must santize any config files and log outputs. While the ...
2
votes
1answer
141 views
Redirecting one page to HTTPS, and all others back to HTTP isn't working as expected
I have WordPress 3.5.1 installed on Ubuntu 12.04 LTS. I'm running Apache 2.2.22.
NOTE: I can't share the domain that I'm working on, and must santize any config files. While the website is public, ...
0
votes
1answer
47 views
Apache is redirecting all https requests to one vhost
Apache novice here,
We run a server with a few dozen vhosted sites, under apache 2.2.22 on ubuntu 12.0.4. None of them had a SSL before. We had a client request one the other day, and shortly after ...
0
votes
1answer
927 views
Configure clean URLs using Laravel using a rewrite rule to index.php
Recently I've started learning Laravel , I have none experience with framework before. I'm encountering the following problem .I'm trying to configure the .htaccess file so I can have clean URLs but ...
1
vote
1answer
36 views
apache2 subdirectory access
I am setting up an apache server on my linux (debian) machine.
I am making a website, with sub directories that contains my css and image file.
Here is my config.
<Directory /var/www/*>
...
0
votes
2answers
48 views
Pretending a file is in subdirectory with .htaccess
I have a web application, and it has a RESTful PHP backend that uses Zend framework (which does its own URL rewriting magic).
The problem is, my backend's entry-page is api.php and the endpoints look ...
1
vote
1answer
81 views
Automatic redirection from http to https with .htaccess authentication in virtual hosting
Hi I have configured Virtual host on apache with .htaccess authentication with SSL. It's working fine when I typed url https://www.example.com:9004/test.php but when I typed ...
2
votes
1answer
74 views
SetEnv directive not working for localhost VirtualHost but works for other VirtualHost
I have two virtual hosts declared: localhost and test.
Both use the SetEnv directive and point to the same DocumentRoot:
NameVirtualHost *:80
<VirtualHost _default_:80>
DocumentRoot ...
1
vote
0answers
130 views
How can I set a secure flag on cookies generated from a Python application?
I have an application written in Python running behind Apache and SSL. I am not seeing a secure flag on my cookie:
apache Server version: Apache/2.2.15 (Unix)
I have added a configuration line to my ...
0
votes
0answers
45 views
mod_jk status page “Client Errors”
I have been examining the information displayed in the mod_jk status page for a server instance and there is a column for each worker titled "CE" which the key states is a count of "Client Errors". I ...