can't get this to work
(same server for each combination)
if Jaws is installed in subfolder, all works fine and index.php removes from urls
if Jaws is installed in root folder of VirtualHost, index.php is present in url
only changes in .htaccess file is at Rewritebase and RewriteRule lines
may be something wrong in my VirtualHost file:
- Code: Select all
<VirtualHost *:80>
ServerName www.domain.com
ServerAlias domain.com
ServerAdmin webmaster@domain.com
ServerSignature Off
DocumentRoot /var/www-domain/
<Directory /var/www-domain/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
LogLevel warn
ErrorLog /var/log/apache2/domain-error.log
CustomLog /var/log/apache2/domain-access.log combined
</VirtualHost>
(in registery map/rewrite = true)