Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Probably do the trick:</p> <pre><code>&lt;IfModule mod_rewrite.c&gt; RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php [QSA,L] &lt;/IfModule&gt; </code></pre> <p><strong>UPDATE 1</strong></p> <p>At this part of code:</p> <pre><code>RewriteRule ^index\.php$ - [L] </code></pre> <p><code>[L]</code> Stop the rewriting process immediately and don't apply any more rules. So,</p> <pre><code>RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule . /index.php [NC,L] </code></pre> <p>Are not interpreted.</p> <p><strong>UPDATE 2:</strong></p> <p>The server will follow symbolic links:</p> <pre><code>Options +FollowSymLinks </code></pre> <p>The server will disable multi views:</p> <pre><code>Options -MultiViews </code></pre> <p>Rewrite engine will be enabled:</p> <pre><code>RewriteEngine On </code></pre> <p>Base directory for rewrite will be <code>/</code>:</p> <pre><code>RewriteBase / </code></pre> <p>If request match a not existing file, continue:</p> <pre><code>RewriteCond %{REQUEST_FILENAME} !-f </code></pre> <p>If request match a not existing directory, continue:</p> <pre><code>RewriteCond %{REQUEST_FILENAME} !-d </code></pre> <p>Rewrite to <code>index.php</code>, in a not sensitive case, and stop execution of next rules:</p> <pre><code>RewriteRule index.php [NC,L] </code></pre> <p>So, try the follow:</p> <pre><code>Options +FollowSymLinks Options -MultiViews RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule index.php [NC,L] </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload