.htaccess 重写:从 url 中删除参数
.htaccess rewrite: Remove parameter from url
我想从 URL 的第一个参数创建子域,然后删除该参数。
想要的结果:
http://www.example.com/mystore -> http://www.mystore.example.com
为此,我首先为 mystore.example.com
创建了虚拟主机
现在我正尝试从 url 中删除这个 mystore 参数。
我在 htaccess 中尝试了以下更改。请检查。
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !^/mystore/
虚拟主机:
<VirtualHost *:80>
ServerAdmin admin@gmail.com
ServerName mystore.example.local
ServerAlias www.mytore.example.local
DocumentRoot /var/www/html/Projectname/public/index.php/mystore
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
.htaccess:此文件位于“public/”文件夹中。此项目在 laravel.
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes +FollowSymLinks
</IfModule>
RewriteEngine On
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Send Requests To Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
RewriteCond %{HTTP_HOST} ^(?:www\.)?example\.com$ [NC]
RewriteRule ^mystore(/.*)?$ http://www.mystore.example.com [NC,L,R=301,NE]
</IfModule>
您可以在 www.example.com
的站点根目录 .htaccess 中使用此规则:
RewriteEngine On
RewriteCond %{HTTP_HOST} pragnastore\.sliderstock\.local$ [NC]
RewriteRule ^pragnastore(/.*)?$ http://pragnastore.sliderstock.local [NC,L,R=301,NE]
确保在 RewriteEngine On
行下方使用此规则。
使用 this link,我通过 Laravel 路由更改解决了它。因此,为此,首先我创建了虚拟主机,然后在我的路由 web.php
中进行了更改
Route::group(array('domain' => '{subdomain}.website.com'), function ($subdomain) {
Route::get('/', 'controller@method');
});
我想从 URL 的第一个参数创建子域,然后删除该参数。
想要的结果:
http://www.example.com/mystore -> http://www.mystore.example.com
为此,我首先为 mystore.example.com
创建了虚拟主机现在我正尝试从 url 中删除这个 mystore 参数。
我在 htaccess 中尝试了以下更改。请检查。
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !^/mystore/
虚拟主机:
<VirtualHost *:80>
ServerAdmin admin@gmail.com
ServerName mystore.example.local
ServerAlias www.mytore.example.local
DocumentRoot /var/www/html/Projectname/public/index.php/mystore
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
.htaccess:此文件位于“public/”文件夹中。此项目在 laravel.
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes +FollowSymLinks
</IfModule>
RewriteEngine On
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Send Requests To Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
RewriteCond %{HTTP_HOST} ^(?:www\.)?example\.com$ [NC]
RewriteRule ^mystore(/.*)?$ http://www.mystore.example.com [NC,L,R=301,NE]
</IfModule>
您可以在 www.example.com
的站点根目录 .htaccess 中使用此规则:
RewriteEngine On
RewriteCond %{HTTP_HOST} pragnastore\.sliderstock\.local$ [NC]
RewriteRule ^pragnastore(/.*)?$ http://pragnastore.sliderstock.local [NC,L,R=301,NE]
确保在 RewriteEngine On
行下方使用此规则。
使用 this link,我通过 Laravel 路由更改解决了它。因此,为此,首先我创建了虚拟主机,然后在我的路由 web.php
中进行了更改Route::group(array('domain' => '{subdomain}.website.com'), function ($subdomain) {
Route::get('/', 'controller@method');
});