We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d49927a commit ee6c9daCopy full SHA for ee6c9da
.htaccess
@@ -1,7 +1,10 @@
1
<IfModule mod_rewrite.c>
2
+ Options +FollowSymlinks
3
RewriteEngine On
4
RewriteBase /
- RewriteRule ^index\.html$ /index.html [NC, L]
5
- RewriteRule ^static/(.*)$ /static/$1 [NC, L]
6
- RewriteRule ^((?!index\.php).*)$ /index.php?a=$1 [L]
+ RewriteCond %{REQUEST_URI} !^/$
+ RewriteCond %{REQUEST_URI} !^/index.html$
7
+ RewriteCond %{REQUEST_URI} !^/index.php$
8
+ RewriteCond %{REQUEST_URI} !^/static/(.*)$
9
+ RewriteRule ^(.*)$ index.php?a=$1 [QSA,L]
10
</IfModule>
0 commit comments