Apache Access

Status
Not open for further replies.

Funky Monkey

New Member
Messages
48
Reaction score
0
Points
0
EDIT: Just found out that mod_rewrite is enabled on stoli. Sorry bout the post. Please delete.


Is there any way a client, like myself, can configure apache so that 'mod_rewrite' works? I'm trying to install an script/app into mysite and that what it requires. I checked the cPanel but it just has a Apache Handler, and I don't think that will do it. Here is part of the steps to the installation process.
Apache must be configured so that mod_rewrite works. Here are instructions for Apache 2. Apache 1.3 is very similar.

1. Make sure a line like the following appears in your httpd.conf
'LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so'

. In the <Directory> directive of your virtual host, look for this line
"AllowOverride None"
and change it to
"AllowOverride FileInfo Options"

3. In the <VirtualHost> section of the config file for your host there will be a line defining the hostname. You need to add the following if you want virtual hosts to work properly:
"ServerAlias *.domain.tld"
Replace domain.tld with whatever your one is, and remove the quotes.
 
Last edited:
Status
Not open for further replies.
Top