如何使用https:// www删除codeigniter中的index.php。在网址?

时间:2015-05-16 09:11:43

标签: apache .htaccess codeigniter mod-rewrite

<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On

RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

RewriteRule ^(.*)\.[\d]{10}\.(css|js)$ $1.$2 [L]
RewriteRule ^search$ webapp/search/

</IfModule>

此代码无法使用https可以提供任何帮助或任何解决方案。

https://www.royez.com/category/ethnic-wear/kurtas-and-kurtis-97.html”无效

https://www.royez.com/index.php/category/ethnic-wear/kurtas-and-kurtis-97.html 工作。

1 个答案:

答案 0 :(得分:0)

我找到了这个问题的解决方案。问题是,当我将网站重定向到https时,curl函数停止工作。现在我重写了curl post函数,现在问题解决了。 谢谢大家