mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
10 lines
301 B
Plaintext
10 lines
301 B
Plaintext
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^[0-9]{10}/(.*)$ $1 [L]
|
|
RewriteCond %{REQUEST_URI} ^(.*?)/public/index.ci.php/
|
|
RewriteRule ^index.ci.php/(.*)$ %1/index.ci.php/$1 [R=303]
|
|
</IfModule>
|
|
|