首頁  >  文章  >  後端開發  >  apache rewrite 无法匹配'index'字符串

apache rewrite 无法匹配'index'字符串

WBOY
WBOY原創
2016-06-06 20:30:36889瀏覽

.htaccess

<code><ifmodule mod_rewrite.c>
RewriteEngine on
RewriteCond $1 !^(index\.php|static|robots\.txt)
RewriteRule ^(.*)$ configure.php/$1 [QSA,PT,L]
</ifmodule>
</code>

以下都可以成功匹配:
http://localhost/admin/index/index
http://localhost/indexa/index/index
http://localhost/indexb/index/index

唯独: index开始的无法匹配:
http://localhost/index
http://localhost/index/index/index
错误提示:
Not Found
The requested URL /index/index/index was not found on this server.

没有与目录下的任何文件重名

回复内容:

.htaccess

<code><ifmodule mod_rewrite.c>
RewriteEngine on
RewriteCond $1 !^(index\.php|static|robots\.txt)
RewriteRule ^(.*)$ configure.php/$1 [QSA,PT,L]
</ifmodule>
</code>

以下都可以成功匹配:
http://localhost/admin/index/index
http://localhost/indexa/index/index
http://localhost/indexb/index/index

唯独: index开始的无法匹配:
http://localhost/index
http://localhost/index/index/index
错误提示:
Not Found
The requested URL /index/index/index was not found on this server.

没有与目录下的任何文件重名

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn