mirror of
https://gitee.com/zhc02/timely_service.git
synced 2025-07-17 13:36:13 +08:00
9 lines
229 B
ApacheConf
9 lines
229 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
Options +FollowSymlinks -Multiviews
|
|
RewriteEngine On
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
|
|
</IfModule>
|