0
我是.htaccess的新手,我有一個名爲products.php的PHP文件和一個名爲/ products的文件夾。.htaccess同名文件和文件夾
我想爲我的網站的產品頁面創建一個友好的URL,我想知道是否可以在文件夾/產品外執行products.php文件。
我使用的是下面的.htaccess代碼。
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^products/([a-z0-9-]+)/([0-9]+)/?$ products.php?id=$2&nome=$1 [NC]
感謝