.htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wp_test/
RewriteRule ^index\.php$ - [L]
RewriteRule ^the_image$ wp-content/uploads/2019/01/banner\.jpg [L]
RewriteRule ^the_page$ sample-page [L]
</IfModule>
当我转到example.com/the_image
时,它显示正确的图像。但是,如果我转到the_page
,则会显示page not found
页面。
有任何解决方法吗?