如何在cakephp中隐藏url?
我正在 cakephp1.3 中做网络应用程序。我希望我的网址
http://mydomine.com/cakephp/users/login 显示为http://mydomine.com/users/login。 其中,users 是控制器名称,login 是操作。我不想在我的网址上显示 cakephp。请帮我修复这个错误。
预先感
谢普什帕
I m doing web application in cakephp1.3. I want my Url
http://mydomine.com/cakephp/users/login to be display as http://mydomine.com/users/login.
Where users is controller name and login is action. I dont want to display cakephp on my url. Please help me to fix this bug.
Thanks in advance
Pushpa
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将您的域名定向到 cakephp 目录...无需重写。
You can direct your domain to the cakephp directory... No need to work with rewrite.
将所有文件从 cakephp 文件夹移动到 / 文件夹,
或者使用apache重写规则从请求中删除cakephp
either move all the files from the cakephp folder to the / folder,
or use apache rewrite rules to remove cakephp from the request
将应用程序目录的所有内容放入您的 Web 文件夹中,然后您就可以直接访问项目的主页。不要忘记复制 .htaccess。
Put all of the content of your app dir to your web folder and then u will be able to access home page of your project directly. Don't forget to copy .htaccess.