MapIgniter icon indicating copy to clipboard operation
MapIgniter copied to clipboard

Apache mod_rewrite is not working

Open francesco1119 opened this issue 10 years ago • 3 comments

cannot continue the installation:

Checking if mod_rewrite is enabled for application folder...
Apache mod_rewrite is not working for application folder. Please change Apache configuration.

francesco1119 avatar Mar 02 '15 03:03 francesco1119

Enable mod_rewrite on apache:

$ sudo a2enmod rewrite

Edit the apache site configuration. For example /etc/apache2/sites-available/default Change "AllowOverride None" to "AllowOverride all"

If it still does not work, please read Apache documentation for you enviroment.

taviroquai avatar Mar 06 '15 09:03 taviroquai

I've done already "$ sudo a2enmod rewrite" and it didn't changed nothing

This is my Apache configuration:

<VirtualHost *:80> ServerAdmin webmaster@localhost

DocumentRoot /var/www
<Directory />
    Options FollowSymLinks
    AllowOverride All                                 
</Directory>
<Directory /var/www/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All                                 
    Order allow,deny
    allow from all
</Directory>

ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
    AllowOverride None
    Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
    Order allow,deny
    Allow from all
</Directory>

ErrorLog ${APACHE_LOG_DIR}/error.log

# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn

CustomLog ${APACHE_LOG_DIR}/access.log combined

Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
    Options Indexes MultiViews FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>

My Apache version is: Server version: Apache/2.2.22 (Debian) Don't understand what I'm doing wrong!

francesco1119 avatar Mar 07 '15 03:03 francesco1119

Did you try to restart Apache?

taviroquai avatar Mar 07 '15 10:03 taviroquai