Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/string/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 如何为以下内容设置301永久重定向?_Php_Mod Rewrite_Redirect - Fatal编程技术网

Php 如何为以下内容设置301永久重定向?

Php 如何为以下内容设置301永久重定向?,php,mod-rewrite,redirect,Php,Mod Rewrite,Redirect,我想知道如何为以下路径设置301永久重定向 From:/restaurants/casa-villa.html 前往:餐厅/卡萨别墅 谢谢! 杰克你确定要这样做吗?我想你可以在Apache中别名/重写它(假设你在LAMP上)。那么,如果有100个restarnts,我可以传递什么变量来删除.html? RewriteEngine On RewriteBase / RewriteRule restaurants/(.*).html /restaurants/$1 [R=301,L]

我想知道如何为以下路径设置301永久重定向

From:/restaurants/casa-villa.html

前往:餐厅/卡萨别墅

谢谢!
杰克

你确定要这样做吗?我想你可以在Apache中别名/重写它(假设你在LAMP上)。那么,如果有100个restarnts,我可以传递什么变量来删除.html?
RewriteEngine On
RewriteBase /
RewriteRule restaurants/(.*).html /restaurants/$1 [R=301,L]