【发布时间】:2014-09-27 12:08:59
【问题描述】:
我的域名是这样排列的
localhost/editor/index.php // This is the php file which require get variables
localhost/editor/.htaccess // htaccess file which will pass values to index.php
HTAccess 文件:代码
RewriteEngine on
RewriteCond %{REQUEST_URI} (.*)/(.*)/
RewriteRule (.*)/(.*)/ index.php?u=$1&e=$2
我想做这样的网址
localhost/editor/variable1/variable2/
在此之后,如果有人最后会错过一个斜线,他会得到 object not found 错误 我尝试了不同的方法,但我无法解决这个问题。
【问题讨论】:
标签: php .htaccess root url-redirection