Kohana PHP 框架中 URL 中的连字符
这是一个 Apache .htaccess 问题。
在 Kohana PHP Framework(我使用的是 3.1)中,它们似乎不支持控制器或操作的 URL 中的连字符,它们是域后面的前 2 个 URL 参数,如下所示:
http://example.com/controller/action
或
http://example.com/blogs/edit-article
有没有办法制作我的 .htaccess 文件,以便我可以从控制器和操作中删除连字符(破折号)插槽,但不是其他插槽?这是我当前的 .htaccess 文件:
Options All +FollowSymLinks -Indexes -Multiviews
# Turn on URL rewriting
RewriteEngine On
# Installation directory
RewriteBase /
# Protect hidden files from being viewed
<Files .*>
Order Deny,Allow
Deny From All
</Files>
RewriteRule ^assets/(.*)$ application/views/assets/$1
RewriteCond %{REQUEST_FILENAME} !/application/views/assets/.*
# Protect application and system files from being viewed
RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我的项目的 Kohana 3.1 的 boostrap.php 中,我必须将其添加到默认路由之上:
这让我可以执行以下操作:
In Kohana 3.1's boostrap.php for my project, I had to add this above the default route:
This lets me do the following things: