0

我正在寻找一种访问方式:

 http://myurl.com/?file=random_token 

 http://myurl.com/random_token/

我已经在 . htaccess但我不知道如何设置模式。

我试过这个:

Options +FollowSymLinks
RewriteEngine on
RewriteRule /(.*)/$ /index.php?file=$1

如果你能帮助我,那就太好了。

4

2 回答 2

1
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^([^/]*)/$ /?file=$1 [L]
于 2013-04-01T11:45:18.077 回答
0

试试这个

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCOnd %{REQUEST_FILENAME} !-d
RewriteRule /?([a-z-]+) index.php?file=$1 [L,QSA]
于 2013-04-01T11:47:00.303 回答