上传头像时 返回的路径 默认加index.php 不想加怎么设置
我用的是.htaccess文件,我的是去掉home/index.php,我也不是很熟悉Apache 的 rewrite,你可以参考一下。我的.htaccess放在网站根目录,同时要开启apache的url 重写,内容如下<IfModule mod_rewrite.c>RewriteEngine onRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^(.*)$ home/index.php/$1 [QSA,PT,L]</IfModule>
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
我用的是.htaccess文件,我的是去掉home/index.php,我也不是很熟悉Apache 的 rewrite,你可以参考一下。
我的.htaccess放在网站根目录,同时要开启apache的url 重写,内容如下
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ home/index.php/$1 [QSA,PT,L]
</IfModule>