查询:
domain.com/page/do
我需要:
domain.com/index.php/page/do
等等
我使用 htaccess 文件,我添加别名
RewriteBase /index.php/
我如何将 RewriteRule 写入此 url?
试试这个,它应该做你想做的事,并且不需要在你的 uri 中有 index.php
###
# Rewrite Rules
#
<IfModule mod_rewrite.c>
### Enable mod_rewrite
RewriteEngine On
RewriteBase /
### Checks if the URI request path coincides with a literal path
### on the filesystem relative to the webroot. If it does not exist,
### then it passes the path through index.php.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
将这些规则添加到文档根目录中的 htaccess 文件中:
RewriteEngine On
RewriteBase /
RewriteCond ^/index.php
RewriteRule ^/?(.*)$ /index.php/$1 [L]
尝试这个:
RewriteRule ^(.*)/(.*)$ /$1/$2 [L]