.htaccess用于Wordpress子文件夹中的Codeigniter
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.htaccess用于Wordpress子文件夹中的Codeigniter相关的知识,希望对你有一定的参考价值。
Try to run Codeigniter in a subfolder of a Wordpress installation and want to remove index.php for clean URLs?Put this code in a .htaccess file in your codeigniter directory ("cidir" in this example).
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase /cidir RewriteCond $1 !^(index.php|images|robots.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?/$1 [L,QSA] </IfModule>
以上是关于.htaccess用于Wordpress子文件夹中的Codeigniter的主要内容,如果未能解决你的问题,请参考以下文章
根域上的WordPress站点工作但子文件夹中的codeigniter不起作用
apache_conf 用于Wordpress的HTACCESS模板