mirror of
https://gh.wpcy.net/https://github.com/netcccyun/easypanel.git
synced 2026-04-23 03:52:25 +08:00
11 lines
No EOL
461 B
Text
11 lines
No EOL
461 B
Text
<IfModule mod_rewrite.c>
|
|
Options +FollowSymlinks
|
|
RewriteEngine On
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^article-(.[0-9]*).html$ index.php?mod=article&id=$1 [QSA,PT,L]
|
|
RewriteRule ^class-(.[0-9]*).html$ index.php?mod=class&cid=$1 [QSA,PT,L]
|
|
RewriteRule ^buy-(.[0-9]*).html$ index.php?mod=buy&tid=$1 [QSA,PT,L]
|
|
RewriteRule ^(.[a-zA-Z0-9\-\_]+).html$ index.php?mod=$1 [QSA,PT,L]
|
|
</IfModule> |