我目前正在使用CodeIgniter开发一个网站,最近我偶然发现了一个路由器和.htaccess问题。
基本上,我简单网站的结构(为了简单起见,让我们调用我的项目' CIExample')如下:
- 家庭
- 关于我们
- 我们的服务
- 新闻
- 联系我们
我使用Page控制器实现的。该控制器有5个功能,分别调用页面视图,即:
Home(),它会调用视图' Home'
关于(),它调用了视图'关于我们'等等..
以前,要访问' Home',我需要在网址窗口中输入http://localhost/CIExample/index.php/page/home
,但在设置以下路线后,我可以删除'页面&#39 ; (classname)部分:
$route['default_controller'] = 'page/home';
$route['home'] = 'page/home';
$route['about'] = 'page/about';
$route['service'] = 'page/service';
$route['news'] = 'page/news';
$route['contact'] = 'page/contact';
然而,当我尝试删除' index.php'时,棘手的部分出现了。
我希望能够通过键入http://localhost/CIExample/home
来访问主页。
所以我在CI论坛/教程/堆栈溢出上做了很多搜索,找到了.htaccess文件的一些代码:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
或http://ellislab.com/forums/viewthread/197675/#929904
我尝试了两个代码,但都没有。
http://localhost/CIExample/home
会将我引导至404未找到的网页,但http://localhost/CIExample/index.php/home
会正常工作。
我想知道什么是错误的?是我的routes.php还是.htaccess或两者兼而有之? 感谢。
注意:我还更改了我的配置/配置文件'文件 - > $config['index_page'] = '';
修改
最后它有效!
在config文件夹中调整config.php文件并设置以下$config['uri_protocol'] = 'PATH_INFO';
(来自' AUTO')。
可用值:
| 'AUTO' Default - auto detects
| 'PATH_INFO' Uses the PATH_INFO
| 'QUERY_STRING' Uses the QUERY_STRING
| 'REQUEST_URI' Uses the REQUEST_URI
| 'ORIG_PATH_INFO' Uses the ORIG_PATH_INFO
Dunno有什么不同但是根据http://www.jotorres.com/2011/12/removing-index-php-from-url-in-codeigniter/中的一条评论,相同的代码可能/可能在生产服务器中不起作用。
任何人都可以解释原因吗?
答案 0 :(得分:14)
您只需将其粘贴到.htaccess文件中即可:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
</IfModule>
并将此替换为您的application / config / config.php文件:
$config['index_page'] = '';
答案 1 :(得分:4)
我使用了以下方法,它在 UBUNTU 中完美运行...... !!
首先验证您是否在index.php文件中启用了mod_rewrite(您可以使用 phpinfo()
进行验证。)
如果DISABLED mod_rewrite然后运行:
1. sudo a2enmod rewrite
2. sudo gedit /etc/apache2/sites-available/defaut
只需将Tag中的“AllowOverride None”替换为“AllowOverride All
”(&lt;'Directory / var / www /'&gt;)
3.然后请运行sudo service apache2 restart
好的好......
现在在Codeigniter的根目录中 - &gt;查找.htaccess
文件,如果找不到,请按 ctrl + h ,仍然找不到,然后创建文件.htaccess
.htaccess
粘贴以下代码:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /ROOT DIRECTORY NAME/
# Directs all EE web requests through the site index file
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
好的,最后只需替换ROOT DIRECTORY NAME
不要从index.php
文件忘记删除 application/config/config.php
让那条线像
$config['index_page'] = '';
答案 2 :(得分:1)
我将这个htaccess用于我的所有CodeIgniter项目。它也支持子文件夹。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#When your application folder isn't in the system folder
#This snippet prevents user access to the application folder
#Submitted by: Fabdrol
#Rename 'application' to your applications folder name.
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [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 index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</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.
# Submitted by: ElliotHaughin
ErrorDocument 404 /index.php
</IfModule>
答案 3 :(得分:0)
import discord
from discord.ext import commands
import asyncio
bot_prefix = "`"
bot = commands.Bot(command_prefix=bot_prefix)
@bot.event
async def on_event():
print('Logged in as')
print(bot.user.name)
print(bot.user.id)
print("---------")
@bot.command(pass_context=True)
async def embed(ctx):
embed = discord.Embed(
title="Blog Post # 2",
url="https://darksiderclan2.weebly.com/uploads/1/1/4/7/114760003/published/battle.png?1510944203/n",
color=0xffff00,
description="Aquí hay una segunda publicación de blog para su sitio web/n",
)
await bot.say(embed=embed)
bot.run('TOKEN')
答案 4 :(得分:0)
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
住:
#RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
本地:
#RewriteRule .* index.php/$0 [PT,L]
答案 5 :(得分:0)
在您的system / application / config / config.php中,更改
$ config ['index_page'] =“ index.php”;
到
$ config ['index_page'] =“”;
,然后在您的.htaccess文件中添加以下内容:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|stylesheets|scripts|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]