在index.php所在文件夹位置,创建.htaccess文件
内容:
RewriteEngine on
RewriteCond $1 !^(index.php|images|robots.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
本文将指导您如何在特定目录下创建.htaccess文件,并详细说明了使用RewriteEngine和RewriteRule指令进行URL重写的基本步骤。
在index.php所在文件夹位置,创建.htaccess文件
内容:
RewriteEngine on
RewriteCond $1 !^(index.php|images|robots.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

被折叠的 条评论
为什么被折叠?