我需要Apache mod-rewrite
在 Codeigniter中重写 URL
页面名称是example.com/pages/page1
,我需要将其重命名为example.com/welcome.html
htaccess
我在文件中写了这个规则
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^pages/page1$ welcome.html [PT,L]
它不起作用。我怎样才能做到这一点?。