我正在寻找一种访问方式:
http://myurl.com/?file=random_token
和
http://myurl.com/random_token/
我已经在 . htaccess但我不知道如何设置模式。
我试过这个:
Options +FollowSymLinks
RewriteEngine on
RewriteRule /(.*)/$ /index.php?file=$1
如果你能帮助我,那就太好了。
我正在寻找一种访问方式:
http://myurl.com/?file=random_token
和
http://myurl.com/random_token/
我已经在 . htaccess但我不知道如何设置模式。
我试过这个:
Options +FollowSymLinks
RewriteEngine on
RewriteRule /(.*)/$ /index.php?file=$1
如果你能帮助我,那就太好了。
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]*)/$ /?file=$1 [L]
试试这个
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCOnd %{REQUEST_FILENAME} !-d
RewriteRule /?([a-z-]+) index.php?file=$1 [L,QSA]