我正在尝试在 CloudWays 服务器中创建一个对 SEO 友好的 URL,但它不起作用。此外,当我在 localhost 或 Cpanel 中尝试它时,它工作正常。
谢谢!
这是我的 .htaccess 文件代码:-
Options +MultiViews
RewriteEngine On
# Set the default handler
DirectoryIndex index.php index.html index.htm
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) /index.php/$1 [L]
RewriteRule ^validate/([a-zA-Z0-9-/]+)$ search.php?phoneNumber=$1
RewriteRule ^validate/([a-zA-Z-0-9-]+)/ search.php?phoneNumber=$1
这是主要链接:-
https://example.com/search.php?phoneNumber=16503858068
我想要这样的:-
https://example.com/validate/16503858068