How can I display SEO friendly URLs using mod_rewrite?(如何使用 mod_rewrite 显示 SEO 友好的 URL?)
问题描述
我本质上不是 PHP 开发人员,我被要求在现有的 PHP 网站上执行一些 SEO.
I am not a PHP developer at heart and I have been asked to perform some SEO on an existing PHP website.
我注意到的第一件事是丑陋的 URL,所以我想让这些 URL 重写为更具信息性的内容.以下是所有可能的模式:
The first thing I noticed was the ugly URLs so I want to get these to rewrite to something more informative. Here are all the possible patterns:
/index.php?m=ModuleType&categoryID=id
/index.php?m=ModuleType&categoryID=id&productID=id
/index.php?page=PageType
/index.php?page=PageType&detail=yes
所以基本上我想做的是将这些转换成类似的东西:
So basically what I want to do is convert these into something like:
/ModuleType/Category
/ModuleType/Category/ProductName
/Page
/Page
在任何建议或示例都很棒之前,我还没有使用过 mod_rewrite!
I haven't used mod_rewrite before any advice or examples would be great!
谢谢.
推荐答案
mod_rewrite 宁愿被用来做相反的事情:在内部将 /ModuleType/Category/ProductName
的请求重写为 /index.php?m=ModuleType&categoryID=id&productID=id代码>.在文档中使用新 URL 是您的应用程序的工作.
mod_rewrite would rather be used to do the opposite: rewrite requests of /ModuleType/Category/ProductName
internally to /index.php?m=ModuleType&categoryID=id&productID=id
. Using the new URLs in the documents is the job of your application.
编辑 下面是一个将参数化网址转换为新网址的函数示例:
Edit Here’s an example of how a function might look like that turns your parameterized URLs into the new ones:
function url($url, $rules) {
$url = parse_url($url);
parse_str($url['query'], $url['query']);
$argNames = array_keys($url['query']);
foreach ($rules as $rule) {
if ($rule[0] == $url['path'] && array_keys($rule[1]) == $argNames) {
$newUrl = $rule[2];
foreach ($rule[1] as $name => $pattern) {
if (!preg_match('/'.addcslashes($pattern, '/').'/', $url['query'][$name], $match)) {
continue 2;
}
$newUrl = str_replace('<'.$name.'>', $match[0], $newUrl);
}
return $newUrl;
}
}
return $url;
}
$rules = array(
array(
'/index.php',
array('m'=>'.*', 'categoryID'=>'.*', 'productID'=>'.*'),
'/<m>/<categoryID>/<productID>'
)
);
echo '<a href="' . url('/index.php?m=ModuleType&categoryID=categoryID&productID=productID', $rules) . '">/ModuleType/Category/ProductName</a>';
这篇关于如何使用 mod_rewrite 显示 SEO 友好的 URL?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 mod_rewrite 显示 SEO 友好的 URL?
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01