在root上安装CodeIgniter,在子目录中安装WordPress Not Working

时间:2015-09-12 03:11:45

标签: php wordpress apache .htaccess codeigniter

我在codeIngiter根目录中安装了wordpress,如果我使用wordpress永久链接,那么我在wordpress页面上得到codeIgniter的404页面找不到错误。 我的.htacess文件如下。我在哪里设置错误? .htacess文件。类似的问题是Installing CodeIgniter on root and WordPress in sub-directory

# Turn on URL rewriting
RewriteEngine On
RewriteBase /

# Protect application and system files from being viewed when the index.php is missing
RewriteCond $1 ^(application|system|private|logs)

# Rewrite to index.php/access_denied/URL
RewriteRule ^(.*)$ index.php/access_denied/$1 [PT,L]

# Rewrite to index.php/URL
RewriteCond %{REQUEST_URI} !^(.+)\.(js|css|gif|png|jpg|jpeg|bmp|swf|txt|xml|htc|pdf|xls|doc|ico)$

# Remove the index.php file
# Ref. http://www.codeigniter.com/userguide3/general/urls.html

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

# Allow these directories and files to be displayed directly:
RewriteCond $1 !^(index\.php|robots\.txt|blog|opensearch\.xml|favicon\.ico)
RewriteRule ^(.*)$ index.php/$1 [L]

1 个答案:

答案 0 :(得分:0)

something like.

DirectoryIndex index.php
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

请参阅重写基础我如何修改,现在您尝试访问codeigniter和wordpress url

相关问题