不想问这个问题, 但我在桌子上敲了一会儿头, 似乎无法理解。 我使用表达引擎, 使用 mod_ rewret 将索引.php 从我所有的 URL 中移除。 这很好。 此外, 我想要将任何有 Myurl.com/adwords/ ( anything) 的东西重写为 Myurl.com/ ( anything) 。 我的regex 和 htaccess 技巧都比较弱。 以下是我在. htaccess 中拥有的 :
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/adwords/(.*)$
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteCond %{QUERY_STRING} !^(ACT=.*)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
所以,我想我所说的任何事情, 结束于/adwords/( something), 捕捉到的东西, 然后在索引.php 的结尾处 以一美元 附加。 我猜这很简单。 谢谢!