提问三步曲: 提问先看教程/FAQ索引(wdcp,wdcp_v3,一键包)及搜索,会让你更快解决问题
1 提供详细,如系统版本,wdcp版本,软件版本等及错误的详细信息,贴上论坛或截图发论坛
2 做过哪些操作或改动设置等
温馨提示:信息不详,很可能会没人理你!论坛有教程说明的,也可能没人理!因为,你懂的
[求助] 请教个LNAMP下的ReWrite的问题。
先声明,我是小白,真心求教,因为百度不出答案了。
前几天装的WDCP,用ThinkPhp写的小测试程序
然后配置REwrite ,但是无论如何配置都是起不到作用的。
首先,ThinkPHP的'URL_MODEL'=> 1,
这时候URL变成 index.php/home/user/login/var/value/
然后,我想去掉url的index.php,但是不管是我上传.htaccess到public_html下,还是在WDCP后台站点修改里指定 支持rewrite 手工添加的地方选择,都起不到作用
其中,.htaccess 的内容如下:是仿照官网上的
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
rewrite规则创建了两个
tpdefault_nginx.conf
----------------------------------------
if (!-e $request_filename)
{
rewrite (.*) /index.php;
}
----------------------------------------
和
tpdefault_apache.conf
----------------------------------------
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
----------------------------------------
如果我通过WDCP制定使用两个rewrite的配置conf后,网站会提示400错误,如果不在WDCP指定,网站可以正常访问
Bad Request
Your browser sent a request that this server could not understand.
Additionally, a 400 Bad Request error was encountered while trying to use an ErrorDocument to handle the request.
我现在真是没辙了。不知道问题出在哪里,请大神指点一二,真心谢谢了。 |