基本网址的htaccess RewriteRule

时间:2018-09-28 21:04:05

标签: apache .htaccess mod-rewrite

我使用此代码从基本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不合适

0 个答案:

没有答案