Incorrect link

  • There are two ways to do so:


    create an htaccess file for each application and move it into the folder with the following content as Alexander Ebert Suggested:




    Apache Configuration
    <IfModule mod_rewrite.c>
    	RewriteEngine On
    
    	RewriteCond %{REQUEST_FILENAME} !-f
    	RewriteCond %{REQUEST_FILENAME} !-d
    	RewriteRule ^(.*)$ index.php?$1 [L,QSA]
    </IfModule>

    or if you only want one htaccess file (same as I do want) you have to change it a bit:



    My rewrites look like this: