gpt4 book ai didi

php - 如何在 Ubuntu 14.04 Lamp Stack 服务器上的 Codeigniter 中设置 .htaccess

转载 作者:行者123 更新时间:2023-12-04 18:47:07 26 4
gpt4 key购买 nike

我不知道如何继续,我检查了许多教程一步一步做但没有成功,我开始认为这是我的 apache 上运行不正常的问题。

我不是服务器人,我总是被困在那些东西中,我的网站在我的本地运行良好,但是在将它转移到服务器后,问题就开始了。

如果你能帮助我,我将不胜感激。

/etc/apache2/sites-available
mysite.com.conf


   # domain: mysite.com
# public: /var/www/mysite.com/public_html/

<VirtualHost *:80>
#error 403
<Directory "/var/www/mysite.com/public_html/blog">
Options FollowSymLinks
Require all granted
AllowOverride None
Require all granted
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
</Directory>

<Directory "/var/www/mysite.com/public_html/">
Options FollowSymLinks
Require all granted
AllowOverride All
Require all granted
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>

<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>

# Index file and Document Root (where the public files are located)
DirectoryIndex index.html index.php
DocumentRoot /var/www/mysite.com/public_html
# Log file locations
LogLevel warn
ErrorLog /var/www/mysite.com/log/error.log
CustomLog /var/www/mysite.com/log/access.log combined
</VirtualHost>

/etc/apache2/sites-available

000-default.conf
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com

ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
DocumentRoot /var/www/mysite
#for the error 403

# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn

ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined

# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

/etc/apache2
apache2.conf
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>

应用程序/config/config.php
$config['base_url'] = '';
$config['index_page'] = '';

我的根目录中的 .htaccess 文件
 RewriteEngine on
RewriteCond $1 !^(index\.php|assets|robots\.txt)
RewriteRule ^(.*)$ index.php?/$1 [L]

最佳答案

让你的 example.com.conf 像这样简单:

<VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
DocumentRoot /var/www/example.com/public_html
</VirtualHost>

保存并关闭此文件后,确保通过键入以下内容启用 VirtualHost:sudo a2ensite example.com.conf

现在重启apache,sudo service apache2 restart

这就是/var/www/example.com/public_html 中的 .htaccess 应该是这样的:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

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

在你的 application/config/config.php
$config['base_url'] = 'http://www.example.com/';

试试这些设置,让我知道它是否适合你。

关于php - 如何在 Ubuntu 14.04 Lamp Stack 服务器上的 Codeigniter 中设置 .htaccess,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30865925/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com