.htaccess 在子目录中安装Codeigniter 4,并保留域通用URL结构

wz3gfoph  于 2023-01-05  发布在  其他
关注(0)|答案(2)|浏览(160)

当前情况:

我已经有一个WordPress的安装在http://example.com和这个网站是多语言,所以你可以访问一个英语网页在http://example.com/en/something-here/,你可以访问这个网页的西班牙语版本的http://example.com/es/algo-aqui/

我尝试做的是:

我想在http://example.com/software/中安装Codeigniter 4,但我想保持一般的网站URL结构,所以我需要能够通过URL http://example.com/en/software/http://example.com/es/software/访问CI4软件。始终阅读本段开头提到的相同CI4安装。

我已经尝试过的:

我在http://example.com/software/上部署了CI4文件,并修改了WordPress站点和Code Igniter的.htaccess文件。
这是我的WP .htaccess文件在根目录:

# Disable directory browsing
Options All -Indexes

<IfModule mod_rewrite.c>
RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^[a-z]{2}/software(.*)$ /software/index.php$2 [L]
</IfModule>

# BEGIN WordPress
# Las directivas (líneas) entre `BEGIN WordPress` y `END WordPress` se generan dinámicamente
# , y solo se deberían modificar mediante filtros de WordPress.
# Cualquier cambio en las directivas que hay entre esos marcadores se sobreescribirán.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

这是我在“software”目录下的.htaccess文件:

# Disable directory browsing
Options All -Indexes

# ----------------------------------------------------------------------
# Rewrite engine
# ----------------------------------------------------------------------

# Turning on the rewrite engine is necessary for the following rules and features.
# FollowSymLinks must be enabled for this to work.
<IfModule mod_rewrite.c>
    Options +FollowSymlinks
    RewriteEngine On

    # If you installed CodeIgniter in a subfolder, you will need to
    # change the following line to match the subfolder you need.
    # http://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewritebase
    RewriteBase /

    # Redirect Trailing Slashes...
    RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule ^(.*)/$ /$1 [L,R=301]

    # Rewrite "www.example.com -> example.com"
    RewriteCond %{HTTPS} !=on
    RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
    RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]

    # Checks to see if the user is attempting to access a valid file,
    # such as an image or css document, if this isn't true it sends the
    # request to the front controller, index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule (.*) /software/index.php/$1

    # Ensure Authorization header is passed along
    RewriteCond %{HTTP:Authorization} .
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    ErrorDocument 404 index.php
</IfModule>

# Disable server signature start
    ServerSignature Off
# Disable server signature end

我得到的错误:

我可以访问这两个,网站和软件。网站运行良好,但当我尝试访问,比方说http://example.com/en/software/,我得到一个404错误,当我访问Codeigniter。错误消息说:“找不到控制器或其方法:应用程序\控制器\En::软件”。
这就好像CI试图找到控制器En(不存在)和方法software
任何帮助都将不胜感激。

nr7wwzry

nr7wwzry1#

经过2天的不懈努力,我已经解决了这个问题。以下是我实际遵循的步骤-
首先,以root用户身份提供以下命令,备份Codeigniter 4应用程序:

tar --exclude=".git" -czvf zipped_file_name.tar codeigniter4_project_folder/

将codeigniter4_project_folder上传到共享软管的public_html目录中,并更改以下内容:
1.更改codeigniter应用程序根文件夹中的app/Config/App.php或.env文件中的基本url(此处ci 4是稍后将在cpanel中配置的子域)
第一个月
1.更改根文件夹中的app/Config/Database.php或.env文件中的数据库配置
database.default.hostname = localhost
database.default.database = your_db_name
database.default.username = your_db_user
database.default.password = your_db_password
database.default.DBDriver = MySQLi
1.更改公用文件夹中的.htaccess文件
RewriteBase /codeigniter4_project_folder/
1.在Cpanel www.example.com中添加子域ci4.yourdomain.com,路径如下:public_html/codeigniter4_project_folder/public
这里的公用文件夹将是最后的路径。这是非常重要的。希望这可能有助于其他人挣扎的问题。

o2g1uqev

o2g1uqev2#

在我的例子中,我需要补充:

RewriteRule ^(.*)$ index.php?/$1 [L]

public/.htaccess中。

相关问题