问题删除index.php?来自带有htaccess的URL

时间:2017-06-26 05:34:14

标签: php .htaccess mod-rewrite

我的托管中的htacces有问题,支持人员没有回复。

我从index.php控制我的网页,我从GET接收请求,并通过一个开关脚本包含X文件:

$parametros = $_GET['accion'];
$parametros = explode('/', $parametros);
$accion = $parametros[0];

然后,我用htaccess删除“index.php?accion =”,这在我的localhost中工作正常,但在服务器中它不起作用,我不知道为什么......这是我的htaccess:

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /index.php?accion=$1 [L]
RewriteCond %{HTTP_HOST} ^webmail\.
RewriteCond %{HTTPS} on
RewriteRule ^/(.*) http://consultoraley.com/$1 [P]

当您转到任何网址时,服务器会返回404未找到的消息...

我真的很想解决这个问题,非常感谢你!

0 个答案:

没有答案