.htaccess文件无效

时间:2014-01-26 13:00:58

标签: php .htaccess

RewriteEngine on
RewriteCond $1 !^(index\.php|img|css|gallary|js|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

以上代码存在于.htaccess中。

我想要对主域或子域发出的每个请求等规则都必须点击域根目录中的索引,php文件。

EXM。 api.xyz.com,api.xyz.com / register,api.xyz.com / login 所有这些请求都必须转到index.php

我在ipage网站主机上遇到此错误。 请告知主持人是否有任何不妥之处。

1 个答案:

答案 0 :(得分:0)

尝试此规则:

DirectoryIndex index.php
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ /index.php/$1 [L]