Key: BR-389
URL: http://jira.openqa.org/browse/BR-389
Project: Bromine
Issue Type: Improvement
Components: Installation
Affects Versions: 3.0 RC 2
Environment: xampp 1.7.3
windows 2003 server
Reporter: Mark Wiltshire
can we please change the root .htaccess file from
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
to
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/xampp/
RewriteRule ^$ app/webroot/ [L]
RewriteCond %{REQUEST_URI} !^/xampp/
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
to allow /xampp admin screens to work as expected.
Many thanks
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
Jeppe commented on BR-389:
--------------------------
I suggest you create a virtual host for bromine.
I do not think we will be implementing this, however I think it is good to know that there are alternatives to handling this. We should move this info to the documentation so people can decided if they need this feature.