我正在尝试获取一个现有目录 /blog (以及类似的目录/blog(/*)
),以重定向到 index.php 以及任何不存在的目录,如下所示。
# Turn on URL rewriting
RewriteEngine On
# Installation directory
RewriteBase /
RewriteRule ^blog(.*)$ /index.php/$1 [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]
ErrorDocument 404 404.shtml
到目前为止,我已经尝试了大约一千件事,但没有任何效果。