我从这个页面得到了这个:https://developers.google.com/commerce/wallet/online/quickstart-php
我想知道如何重新编写它以在子目录中工作。
喜欢/subdirectory/index.php
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L,NC,QSA]
答案 0 :(得分:1)
以下是您需要做的事情:
RewriteBase
更改为子目录的名称/index.php
所以说你的子目录名为/subdir
,你有http://domain.com/subdir/index.php
,你就有这个:
RewriteEngine On
RewriteBase /subdir/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L,NC,QSA]