我使用此代码从基本url获取路径
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteRule ^([^/]+)$ index.php?short=$1
如果我请求yourname.com/a81s2
,则short
变量传递了a81s2
值
现在,如果我想使用yourname.com/webservice/
或yourname.com/
进行另一个请求,例如短网址。我想如果我的网址是/webservice/
RewriteRule
不合适