-1

我会让这个简短而甜蜜:

我想输入这个: http://pachonk.com/alex/admin/user/

得到这个: http://pachonk.com/alex/admin/index.php?page=users

我正在尝试使用:

Options +FollowSymLinks
RewriteEngine On
RewriteBase /alex
RewriteRule ^admin/([a-zA-Z0-9]+)/?$ admin/index.php?page=$1

使用其他变体,但这不起作用。怎么了?

4

1 回答 1

1

确保 mod_rewrite 和 .htaccess 在httpd.conf. 然后把这个稍微修改的代码放在$DOCUMENT_ROOT/alex/.htaccess目录中:

Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /alex/

RewriteRule ^admin/([a-zA-Z0-9]+)/?$ admin/index.php?page=$1 [L,QSA]
于 2013-04-08T09:53:59.337 回答