Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试更改 wordpress root .htaccess 中的 url
网址是 http://www.demoain/category/blog
我想从这个 http://www.demoain/blog重写 url
请帮帮我
试试这个代码:
RewriteEngine On RewriteRule ^blog$ /category/blog [L] RewriteRule ^blog/(.*)$ /category/blog/$1 [L]