網頁

2020年8月14日 星期五

Xcode舊專案改用Automatic Sign發生〞Set the provisioning profile value to "Automatic" in the build settings editor, or switch to manual signing in the Signing & Capabilities editor.〞 Error

平時都是用手動指定憑證發布app,但剛好有舊案可以使用自動的,就改成自動,結果一直發生"Set the provisioning profile value to "Automatic" in the build settings editor, or switch to manual signing in the Signing & Capabilities editor.",查半天,看到升级Xcode 10后遇到的问题提到清空User defined中的PROVISIONING_PROFILE,Target及Project設定都要改。

改完後,最好是Automatically manage signing的勾選取消再勾回,選Team,重開XCode。

參考網址:

升级Xcode 10后遇到的问题

2020年8月3日 星期一

nginx設定轉址

有個網站跟客戶希望能直接轉址到別處,基本上有好幾種做法
  1. 直接php轉
  2. .htaccess寫方式轉
  3. web server(我是用nginx)轉
查了下,最後選了第三個做,直接在nginx.conf或site-enabled/default中的server內最後面加底下這行,oldpage及http://www.domain.com/newpage自行更換
rewrite ^/oldpage$ http://www.domain.com/newpage redirect;

重開機就OK了
#service nginx reload

參考網址: