Skip to content

Instantly share code, notes, and snippets.

@bramus
Last active November 10, 2023 20:20
Show Gist options
  • Save bramus/5332525 to your computer and use it in GitHub Desktop.
Save bramus/5332525 to your computer and use it in GitHub Desktop.
URL Rewriting for Apache (requires mod_rewrite) and IIS (requires IIS url rewrite module)
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Main Rule" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
@kmvan
Copy link

kmvan commented Mar 3, 2020

NGINX

location / {
        try_files $uri /index.php;
    }

That will lost $_GET contents.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment