ファイルに問題があり.htaccess
ます。
このURLの内容を表示したいのですが:
http://mywebsite.com/admin/payments/invoices/view/index.php?id=123456
これにアクセスすると:
http://mywebsite.com/admin/payments/invoices/view/123456/
これが私の実際の.htaccessです
Options +FollowSymlinks
RewriteEngine On
RewriteBase /admin/payments/invoices/
RewriteRule ^/view/([0-9]+)/(index.php)?$ /view/index.php?id=$1 [L,QSA]
何か考えはありますか?
ありがとう!