我有一个链接,这是
假设http://musicfoorti.com/categorylist/61/0/1.html这是宝莱坞电影歌曲类别,我想将其重写为http://musicfoorti.com/bollywood-movie-songs.html
这意味着每个类别链接都将类似于http://musicfoorti.com/category-name.html ,这是我的.htaccess新代码,.htaccess所以我不能这样做。选项-MultiViews +关注符号链接-索引
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^categorylist/([0-9]+)/([0-9]+)/([0-9]+)\.html$ /index.php?pid=$1&sort=$2&page=$3 [L]
RewriteRule ^fileDownload/([0-9]+)/(.*)\.html$ /file.php?fid=$1 [L]
RewriteRule ^download/([0-9]+).html$ /file.php?fid=$1&download [L]
RewriteRule ^([0-9]+)/updates\.html$ /updates.php?page=$1 [L]
RewriteRule ^search\.html$ /search.php [L]
RewriteRule ^index\.html$ /index.php [L]
<IfModule mod_env.c>
SetEnv SEO_SUPPORT 1
</IfModule>
</IfModule>
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE application/javascript text/css text/html text/xml
</IfModule>
这是我的PHP代码
<div>
<h3><a href="'.$sabb->settings['url'].'/categorylist/'.$file['fid'].'/'.$sort.'/1.html">'.escape($file['name']).'</a></h3>
<div class="listbox-tags">'.sprintf($_admin, $file['fid'], $file['fid']).'</div>
</div>
请告诉我该怎么办?
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。