我正在尝试制作这个网址:
http://www.site.com/blog/category/showcase
这样的事情不起作用:
RewriteRule ^blog$ /blog/category/showcase
或:
RewriteRule ^blog$ http://www.site.com/blog/category/showcase [R=301,L]
有任何想法吗?
答案 0 :(得分:0)
在内部重写之前保留301。您可以使用:
RewriteEngine On
RewriteBase /blog/
RewriteRule ^$ category/showcase [R=301,L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule ^(.*)$ index.php/$1 [L]