如何更改此网址
到
http://domain.com/search/song.html
.htaccess文件
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*) index.php?/$1 [QSA,L]
答案 0 :(得分:2)
尝试添加字符串
RewriteRule ^(/search/song)$ $1.html [L,R=301]
在RewriteEngine On
如果这不起作用,请尝试将其放入:
RedirectMatch 301 ^(/search/song)$ $1.html
这应该完美无缺。