同道编码员,我在codeigniter控制器中有一个功能,它接受一些参数,其中一个是电子邮件地址。它叫做喜欢这个:
domain/path/mycontroller/myfunc/email@gmail.com/anotherparam
控制器正在接收的是:email @ gmail_com
我在CI配置中允许句点和'@':
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-@';
我的.htaccess如下:
RewriteEngine On
RewriteBase /myapp/
RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /myapp/index.php?/$1 [L]
关于如何解决这个问题的任何想法?
感谢
答案 0 :(得分:0)
从2008年开始在CI论坛上发现相关帖子:
http://codeigniter.com/forums/viewthread/94091/
看起来有些人遇到了完全相同的问题,调整$config['uri_protocol']
中的config.php
是解决方法。
/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string. The default setting of "AUTO" works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| '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
|
*/
$config['uri_protocol'] = "QUERY_STRING";
至少有一个人报告QUERY_STRING
值解决了他们的问题。如果这不起作用,请尝试其他美味风味设置之一。
希望这能让您走上正确的解决方案之路。
答案 1 :(得分:0)
您只需加密Base 64中的电子邮件地址,然后在您想要使用它时解密:
base64_encode($email_address);
base64_decode($url_segment);
这适用于您要通过网址发送的任何文字。更安全,但不限于电子邮件地址。但会创建一个更长的URL。