Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok so I'm trying to install TheBugGenie (a php based bug tracking solution) on my personnal website to help me with a new project I'm starting.

So I installed TheBugGenie on http://myexampledomain.com/bugs, after instalation it can be accessed on a subdirectory called "thebuggenie". So to access it I need to go to "http//myexampledomain.com/bugs/thebuggenie". On that directory there is a .htaccess to make the application urls pretty.

That .htaccess file contains:
# .htaccess file for The Bug Genie

# make sure that magic_quotes and register_globals is always off
<IfModule mod_php5.c>
        php_flag magic_quotes_gpc   off
        php_flag register_globals   off
</IfModule>

# rewrite rules
<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /bugs/thebuggenie
# Example:
# RewriteBase /
# or
# RewriteBase /dev/thebuggenie

  # skip all hidden files (starting with a .)
  RewriteCond %{REQUEST_URI} \..+$
  RewriteCond %{REQUEST_URI} !\.(html|wsdl|json|xml)$
  RewriteRule .* - [L]

  # redirect to front controller
  RewriteRule ^(.*)$ index.php?url=$1 [NC,QSA,L]

</IfModule>

# Stop people accessing directories they shouldn't have access to
RedirectMatch 403 ^/\.svn(/|$)

Now my question is if it's possible with another .htaccess file, maybe on the root directory of my domain to access the application simply by typing "http://myexampledomain.com/bugtracking" and still maintan the prettify urls on TheBugGenie? And if so what settings would I need to write on that file?

I never really wrote a .htaccess file myself, I usually only need to tinker around with them to fix small problems, so I'm sorry if this is a RTFM question. Btw, I'm using a shared hosting server so messing around with Apache settings is a no go.

Thanks in advance.

share|improve this question
You can easily do the internal redirect (URL will remain unchanged in browser) from /bugtracking to /bugs/thebuggenie .. but what about the links generated by the TheBugGenie itself? They will (most likely) point to real /bugs/thebuggenie URL... To completely hide it you will need to proxy those requests .. and I do not know if you can do it (most likely not if you are on shared hosting). – LazyOne Sep 27 '11 at 21:29

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.