2 Star 14 Fork 2

无念/一鱼CMS_APHPCMS

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
url_rewrite.txt 520 Bytes
Copy Edit Raw Blame History
无念 authored 2025-03-05 15:25 +08:00 . v1.1.0
Nginx(nginx.htaccess):
======================================
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php/$1 last;
}
}
======================================
Apache(.htaccess):
======================================
<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>
======================================
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/willphp/aphpcms.git
git@gitee.com:willphp/aphpcms.git
willphp
aphpcms
一鱼CMS_APHPCMS
main

Search